TryGetDeviceRGBColor Method
In This Topic
Tries to get the RGB
System.Drawing.Color associated with the specified key (in a PDF an RGB
System.Drawing.Color should be represented as an array of 3 floats).
Adds a warning to GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog if the value exists but cannot be converted to System.Drawing.Color.
Syntax
'Declaration
Public Shared Function TryGetDeviceRGBColor( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByRef As System.Drawing.Color _
) As System.Boolean
public static System.bool TryGetDeviceRGBColor(
IPdfDict ,
PdfName ,
out System.Drawing.Color
)
Parameters
- dict
- The current dictionary.
- key
- The key of the value to get.
- value
- OUT: the value associated with the specified key.
Return Value
True if the key was found and the value could be converted to a System.Drawing.Color, false otherwise.
See Also