Create a new RGB color object.
The values are in 0 through 255, 0 is black
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic static ISignDocColor create(
byte red,
byte green,
byte blue
)
Public Shared Function create (
red As Byte,
green As Byte,
blue As Byte
) As ISignDocColor
public:
static ISignDocColor^ create(
unsigned char red,
unsigned char green,
unsigned char blue
)
static member create :
red : byte *
green : byte *
blue : byte -> ISignDocColor
Parameters
- red
- Type: SystemByte
The value of the red channel. - green
- Type: SystemByte
The value of the green channel. - blue
- Type: SystemByte
The value of the blue channel.
Return Value
Type:
ISignDocColorA new color object.
See Also