Platforms to show: All Mac Windows Linux Cross-Platform

Back to DynaPDFTableMBS class.

Previous items

DynaPDFTableMBS.SetGridVerticalColorFloat(channels() as Double, ExtColorSpace as Integer = 0, ColorSpaceHandle as Integer = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the vertical grid color.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetGridVerticalColorFloat(paramarray channels as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the vertical grid color.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetGridVerticalColorValue(TPDFColorSpace as Integer, ColorValue as UInt32) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the vertical grid color.

Default is black.

Pass a color space and a matching color value.
For example kcsDeviceRGB and RGB(r,g,b), kcsDeviceCMYK and CMYK(c,m,y,k) or kcsDeviceGray with gray color.

DynaPDFTableMBS.SetGridWidth(h as Double, v as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the grid width.

Default is 0.

See also SetGridWidth function in DynaPDF manual.

DynaPDFTableMBS.SetImageColor(Row as Integer, Column as Integer, channels() as Integer, ExtColorSpace as Integer = 0, ColorSpaceHandle as Integer = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the image color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass an integer for each channel with 0 to 255.

See also:

DynaPDFTableMBS.SetImageColor(Row as Integer, Column as Integer, paramarray channels as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the image color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass an integer for each channel with 0 to 255.

See also:

DynaPDFTableMBS.SetImageColorFloat(Row as Integer, Column as Integer, channels() as Double, ExtColorSpace as Integer = 0, ColorSpaceHandle as Integer = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the image color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetImageColorFloat(Row as Integer, Column as Integer, paramarray channels as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the image color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetImageColorValue(Row as Integer, Column as Integer, TPDFColorSpace as Integer, ColorValue as UInt32) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the image color.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a color space and a matching color value.
For example kcsDeviceRGB and RGB(r,g,b), kcsDeviceCMYK and CMYK(c,m,y,k) or kcsDeviceGray with gray color.

DynaPDFTableMBS.SetPDF(pdf as DynaPDFMBS)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the target PDF for this table.

Some examples using this method:

DynaPDFTableMBS.SetRowHeight(Row as Integer, value as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the row height of a row.

See also SetRowHeight function in DynaPDF manual.

DynaPDFTableMBS.SetTableWidth(Value as single, AdjustType as Integer, MinColWidth as single)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function changes the width of the table.

At least one column must be modified when the width will be changed. The parameter AdjustType specifies how the column width should be modified. If the new width is larger, then the difference can be added to the left or right column, or all columns can get a unique width (TableWidth / NumColumns). The parameter MinColWidth is ignored in this case.
If the new width is smaller then the difference must be subtracted from the columns. The parameter MinColWidth specifies in this case the minimum width of columns that must be adjusted. It is only used if AdjustType is not set to kcoaUniqueWidth. The column widths are adjusted starting from the left or right side as specified. If the width of the first column is not large enough to subtract the difference, then the minimum column width is set to the column. This adjustment continues until the gap is zero. If the new table width is smaller as MinColWidth * NumColumns then the widths of the remaining columns will be set to zero. Such cases should be avoided since the column widths must be adjusted again when the table is drawn.

kcoaUniqueWidthSet the column widths to TableWidth / NumColumns
kcoaAdjLeftAdjust the widths starting from the left side
kcoaAdjRightAdjust the widths starting from the right side

See dynapdf_help manual for details.
Returns true on success or false on failure.

See also SetTableWidth function in DynaPDF manual.

DynaPDFTableMBS.SetTextColor(Row as Integer, Column as Integer, channels() as Integer, ExtColorSpace as Integer = 0, ColorSpaceHandle as Integer = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the text color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass an integer for each channel with 0 to 255.

See also:

DynaPDFTableMBS.SetTextColor(Row as Integer, Column as Integer, paramarray channels as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the text color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass an integer for each channel with 0 to 255.

See also:

DynaPDFTableMBS.SetTextColorFloat(Row as Integer, Column as Integer, channels() as Double, ExtColorSpace as Integer = 0, ColorSpaceHandle as Integer = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the text color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetTextColorFloat(Row as Integer, Column as Integer, paramarray channels as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the text color of the table, a row or cells.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a double value for each channel with range 0.0 to 1.0.

See also:

DynaPDFTableMBS.SetTextColorValue(Row as Integer, Column as Integer, TPDFColorSpace as Integer, ColorValue as UInt32) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 12.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the horizontal grid color.

Default is black.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

Pass a color space and a matching color value.
For example kcsDeviceRGB and RGB(r,g,b), kcsDeviceCMYK and CMYK(c,m,y,k) or kcsDeviceGray with gray color.

Previous items

The items on this page are in the following plugins: MBS DynaPDF Plugin.


💬 Ask a question or report a problem
The biggest plugin in space...