Platforms to show: All Mac Windows Linux Cross-Platform

Back to DynaPDFTableMBS class.

Next items

DynaPDFTableMBS.SetBackColor(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 back color of the table, a row or cells.
Example
Var pdf as DynaPDFMBS // your PDF environment
Var tbl as DynaPDFTableMBS = pdf.CreateTable(3, 3, 500.0, 20.0) // make some table

const allRows = -1
const allColumns = -1

// add a few rows
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)

// row 0 in 100% Cyan
call tbl.SetBackColor(0, allColumns, array(255,0,0,0), pdf.kcsDeviceCMYK)
// row 1 in 100% Cyan
call tbl.SetBackColor(1, allColumns, array(0, 255, 0, 0), pdf.kcsDeviceCMYK)
// row 2 in 100% Cyan
call tbl.SetBackColor(2, allColumns, array(0, 0, 255, 0), pdf.kcsDeviceCMYK)
// row 3 in RGB red with 50% transparency
call tbl.SetBackColor(3, allColumns, array(255, 0, 0))

Default is none (transparent)
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:

Some examples using this method:

DynaPDFTableMBS.SetBackColor(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 back color of the table, a row or cells.
Example
Var pdf as DynaPDFMBS // your PDF environment
Var tbl as DynaPDFTableMBS = pdf.CreateTable(3, 3, 500.0, 20.0) // make some table

// now fill all rows and columns with RGB red specified by integer values
const allRows = -1
const allColumns = -1
call tbl.SetBackColor(allRows, allColumns, 255, 0, 0)

Default is none (transparent)
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.SetBackColorFloat(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 back color of the table, a row or cells.
Example
Var pdf as DynaPDFMBS // your PDF environment
Var tbl as DynaPDFTableMBS = pdf.CreateTable(3, 3, 500.0, 100.0) // make some table

const allRows = -1
const allColumns = -1

// add a few rows
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)
rowNum = tbl.AddRow(-1.0)

// row 0 in 100% Cyan
call tbl.SetBackColorFloat(0, allColumns, array(1.0, 0.0, 0.0, 0.0), pdf.kcsDeviceCMYK)
// row 1 in 100% Cyan
call tbl.SetBackColorFloat(1, allColumns, array(0.0, 1.0, 0.0, 0.0), pdf.kcsDeviceCMYK)
// row 2 in 100% Cyan
call tbl.SetBackColorFloat(2, allColumns, array(0.0, 0.0, 1.0, 0.0), pdf.kcsDeviceCMYK)
// row 3 in RGB red
call tbl.SetBackColorFloat(3, allColumns, array(1.0, 0.0, 0.0))

Default is none (transparent)
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.SetBackColorFloat(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 back color of the table, a row or cells.
Example
Var pdf as DynaPDFMBS // your PDF environment
Var tbl as DynaPDFTableMBS = pdf.CreateTable(3, 3, 500.0, 20.0) // make some table

// now fill all rows and columns with RGB red specified by double values
const allRows = -1
const allColumns = -1
call tbl.SetBackColorFloat(allRows, allColumns, 1.0, 0.0, 0.0)

Default is none (transparent)
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.SetBackColorValue(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 back color of the table, a row or cells.
Example
Var pdf as DynaPDFMBS // your PDF environment
Var tbl as DynaPDFTableMBS = pdf.CreateTable(3, 3, 500.0, 20.0) // make some table

// now fill all rows and columns with RGB red specified by RGB() call
const allRows = -1
const allColumns = -1

Var c as Integer = DynaPDFMBS.RGB(255, 0, 0)
call tbl.SetBackColorValue(allRows, allColumns, DynaPDFMBS.kcsDeviceRGB, c)

Default is none (transparent)
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.SetBorderColor(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 border color of the table, a row or cells.
Example
// set color in CMYK with cyan (255 = 100%)
Call tbl.SetBorderColor(-1, -1, Array(255, 0, 0, 0), pdf.kesDeviceCMYK)
Call tbl.SetBorderWidth(-1, -1, 2.0, 2.0, 2.0, 2.0)

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.SetBorderColor(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 border color of the table, a row or cells.
Example
const AllRows = -1
const AllColumns = -1

// set gray color for all borders to RGB(100,100,100)
call tbl.SetBorderColor(AllRows, AllColumns, 100, 100, 100)

// set border for all cells with fine line
call table.SetBorderWidth(AllRows, AllColumns, 0.5, 0.5, 0.5, 0.5)

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.SetBorderColorFloat(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 border color of the table, a row or cells.
Example
// set color in CMYK with magenta (1.0 = 100%)
Call tbl.SetBorderColorFloat(-1, -1, Array(0.0, 1.0, 0.0, 0.0), pdf.kesDeviceCMYK)
Call tbl.SetBorderWidth(-1, -1, 2.0, 2.0, 2.0, 2.0)

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.SetBorderColorFloat(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 border color of the table, a row or cells.
Example
// set color in RGB with blue (1.0 = 100%)
Call tbl.SetBorderColorFloat(-1, -1, 0.0, 0.0, 1.0)
Call tbl.SetBorderWidth(-1, -1, 2.0, 2.0, 2.0, 2.0)

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.SetBorderColorValue(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 border color of the table, a row or cells.
Example
// set color in CMYK with magenta (255 = 100%)
Call tbl.SetBorderColorValue(-1, -1, pdf.kesDeviceCMYK, pdf.CMYK(0, 255, 0, 0))
Call tbl.SetBorderWidth(-1, -1, 2.0, 2.0, 2.0, 2.0)

// set color in RGB with green (255 = 100%)
Call tbl.SetBorderColorValue(row, -1, pdf.kesDeviceRGB, pdf.RGB(0, 255, 0))
Call tbl.SetBorderWidth(row, -1, 2.0, 2.0, 2.0, 2.0)

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.SetBorderWidth(Row as Integer, Column as Integer, left as Double, top as Double, right as Double, bottom 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 border width of the table, a row or cells.
Example
// set border for a row to right/bottom with fine line
call table.SetBorderWidth(rowNum, -1, 0.0, 0.0, 0.5, 0.5)

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

Some examples using this method:

DynaPDFTableMBS.SetCellAction(Row as Integer, Column as Integer, ActionHandle as UInt32, Mode as Integer) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 19.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates an invisible link annotation for the specified cell or table and associates the provided action with that annotation.

The result is an interactive area that executes the action if the user clicks on cell or table.
A cell action is always a background object that is created in the size of the background area when the table is drawn.

Unlike other cell objects like images, text, and so on, a cell link is no persistent object because the action will be deleted when then PDF file in memory will be closed or when destructor will be called.
If the table should be drawn into more than one PDF file then re-create the actions and cell action before drawing the table into the next PDF file.

Actions can be created with functions like CreateGoToAction(), CreateGoToRAction(), and so on.

If the function succeeds the return value is true. If the function fails the return value is false.

See also SetCellAction function in DynaPDF manual.

DynaPDFTableMBS.SetCellDashPattern(Row as Integer, Column as Integer, CellSide as Integer, LineCapStyle as Integer, values() as Double, Phase as Double) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 20.0 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Apply a line dash pattern to cell, row, and table borders.

Pass kcsTop, kcsBottom, kcsLeft or kcsRight for CellSide parameter.

See also SetCellDashPattern function in DynaPDF manual.

DynaPDFTableMBS.SetCellImageData(Row as Integer, Column as Integer, ForeGround as boolean, HAlign as Integer, VAlign as Integer, Width as Double, Height as Double, ImageData as MemoryBlock, index 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 cell image.
Example
Var PictureData as memoryblock // from database maybe?
Var w as Double = 300 // destination size
Var h as Double = 200
Var row as Integer
Var column as Integer

Var table as DynaPDFTableMBS // your table

call table.SetCellImageData(row, column, true, table.kcoCenter, table.kcoCenter, w, h, PictureData, 0)

Returns true on success.

See also:

DynaPDFTableMBS.SetCellImageData(Row as Integer, Column as Integer, ForeGround as boolean, HAlign as Integer, VAlign as Integer, Width as Double, Height as Double, ImageData as string, index 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 cell image.
Example
Var PictureData as string // from database maybe?
Var w as Double = 300 // destination size
Var h as Double = 200
Var row as Integer
Var column as Integer

Var table as DynaPDFTableMBS // your table

call table.SetCellImageData(row, column, true, table.kcoCenter, table.kcoCenter, w, h, PictureData, 0)

See also:

DynaPDFTableMBS.SetCellOrientation(Row as Integer, Column as Integer, Orientation 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
The function sets the cell orientation.

See dynapdf_help.pdf for details.

Some examples using this method:

See also SetCellOrientation function in DynaPDF manual.

DynaPDFTableMBS.SetCellPicture(Row as Integer, Column as Integer, ForeGround as boolean, HAlign as Integer, VAlign as Integer, Width as double, Height as Double, Pic as Picture) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 20.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets cell image with given picture.
Example
Var Pic as picture // your picture from database maybe?
Var w as Double = 300 // destination size
Var h as Double = 200
Var row as Integer
Var column as Integer

Var table as DynaPDFTableMBS // your table

call table.SetCellPicture(row, column, true, table.kcoCenter, table.kcoCenter, w, h, Pic)

Returns true on success.

DynaPDFTableMBS.SetCellSpacing(Row as Integer, Column as Integer, left as Double, top as Double, right as Double, bottom 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 cell spacing of the table, a row or cells.

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

Some examples using this method:

DynaPDFTableMBS.SetCellTable(Row as Integer, Column as Integer, HAlign as Integer, VAlign as Integer, SubTable as DynaPDFTableMBS) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function inserts a sub table into the specfied cell.

A sub table is always a foreground object that has a strong width and height. That means, if the cell is not large enough then it will be expanded.
Note that the function creates no copy of the table. Do not delete the sub table when it is used by another table.
In programming languages which use reference counting like Xojo, it is important to delete the tables in right order. Delete first the tables which contain references to sub tables. Finally, delete the sub tables.

If the function succeeds the return value is true. If the function fails the return value is false.
See dynapdf_help.pdf for details.

See also SetCellTable function in DynaPDF manual.

DynaPDFTableMBS.SetCellTemplate(Row as Integer, Column as Integer, ForeGround as boolean, HAlign as Integer, VAlign as Integer, TmplHandle as Integer, Width as Double = 0, Height as Double = 0) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method DynaPDF MBS DynaPDF Plugin 13.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The function inserts a template into the specified cell.

See dynapdf_help.pdf for details.

Some examples using this method:

See also SetCellTemplate function in DynaPDF manual.

DynaPDFTableMBS.SetCellTextAnsi(Row as Integer, Column as Integer, HTextAlign as Integer, VAlign as Integer, text as string) 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 of a cell with ANSI text.

Use DynaPDFMBS.ktaLeft and similar text align constants for HAlign.
But use DynaPDFTableMBS.kcoCenter and similar cell orientation constants for Valign.

See also SetCellText function in DynaPDF manual.

DynaPDFTableMBS.SetFlags(Row as Integer, Column as Integer, Flags as Integer) 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 flags for a cell.
Example
Var table as DynaPDFTableMBS // your table

// mark this row as being a header row, so it's repeated on all pages
call table.SetFlags(rowNum, 0, table.ktfHeaderRow)

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

Some examples using this method:

See also SetFlags function in DynaPDF manual.

DynaPDFTableMBS.SetFont(Row as Integer, Column as Integer, name as string, Style as Integer = 0, Embed as Boolean = true, CodePage as Integer = &h27) 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 font of the table, a row or cells.
Example
Var tbl as DynaPDFTableMBS // your table

// set font for all cells
call tbl.SetFont -1, -1, "Helvetica", pdf.kfsNone, true, pdf.kcpUnicode
// set bold font for a special cell
call tbl.SetFont rowNum, 2, "Helvetica", pdf.kfsBold, true, pdf.kcpUnicode

Default is Helvetica, Code page 1252, Embed false.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

See also SetFont function in DynaPDF manual.

DynaPDFTableMBS.SetFontAnsi(Row as Integer, Column as Integer, name as string, Style as Integer = 0, Embed as Boolean = true, CodePage as Integer = &h27) 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 font of the table, a row or cells.

Default is Helvetica, Code page 1252, Embed false.
If Row is -1, all rows are modified. If Column is -1, all columns are modified.

See also SetFont function in DynaPDF manual.

DynaPDFTableMBS.SetFontSelMode(Row as Integer, Column as Integer, value as Int32) 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 font selection mode of the table, a row or cells.

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

See also SetFontSelMode function in DynaPDF manual.

DynaPDFTableMBS.SetFontSize(Row as Integer, Column as Integer, size 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 font size of the table, a row or cells.

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

See also SetFontSize function in DynaPDF manual.

DynaPDFTableMBS.SetGridHorizontalColor(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 horizontal grid color.

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.SetGridHorizontalColorFloat(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 horizontal 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.SetGridHorizontalColorFloat(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 horizontal 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.SetGridHorizontalColorValue(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.

DynaPDFTableMBS.SetGridVerticalColor(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 vertical grid color.

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:

Some examples using this method:

DynaPDFTableMBS.SetGridVerticalColor(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 vertical grid color.

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:

Next items

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


The biggest plugin in space...