Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ColorManager Class / ToArgb Method
A Workbook object which contains color settings.
The specified color to get ARGB color from.


In This Topic
    ToArgb Method (ColorManager)
    In This Topic
    Get ARGB-compatible fill from the specified fill.
    Syntax
    'Declaration
     
    
    Public Function ToArgb( _
       ByVal workbook As Workbook, _
       ByRef fill As Fill _
    ) As Fill
    'Usage
     
    
    Dim instance As ColorManager
    Dim workbook As Workbook
    Dim fill As Fill
    Dim value As Fill
     
    value = instance.ToArgb(workbook, fill)
    public Fill ToArgb( 
       Workbook workbook,
       ref Fill fill
    )

    Parameters

    workbook
    A Workbook object which contains color settings.
    fill
    The specified color to get ARGB color from.

    Return Value

    A Color value represents ARGB color.
    Remarks
    fill is passed as "ref" but its value is not changed.
    See Also