Create a new RgbColor from it's color components.

Namespace: TallComponents.PDF.Layout.Colors
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

C#
public RgbColor(
	byte r,
	byte g,
	byte b
)
Visual Basic
Public Sub New ( _
	r As Byte, _
	g As Byte, _
	b As Byte _
)

Parameters

r
Type: System..::..Byte
Red color component [0-255]
g
Type: System..::..Byte
Green color component [0-255]
b
Type: System..::..Byte
Blue color component [0-255]

See Also