Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetActualColumnVisible Method
The column index.
The sheet area.


In This Topic
    GetActualColumnVisible Method
    In This Topic
    Gets whether a column in the specified sheet area is displayed.
    Syntax
    'Declaration
     
    Public Function GetActualColumnVisible( _
       ByVal column As Integer, _
       ByVal sheetArea As SheetArea _
    ) As Boolean
    'Usage
     
    Dim instance As Worksheet
    Dim column As Integer
    Dim sheetArea As SheetArea
    Dim value As Boolean
     
    value = instance.GetActualColumnVisible(column, sheetArea)
    public bool GetActualColumnVisible( 
       int column,
       SheetArea sheetArea
    )

    Parameters

    column
    The column index.
    sheetArea
    The sheet area.

    Return Value

    Returns true if the column is visible in the sheet area; otherwise, false.
    See Also