Spread WPF Documentation
PreviousActualVisibleColumn Method
Example 


The index of the current column.
Gets the index of the previous visible column from the current column.
Syntax
'Declaration
 
Public Function PreviousActualVisibleColumn( _
   ByVal column As System.Integer _
) As System.Integer
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim value As System.Integer
 
value = instance.PreviousActualVisibleColumn(column)
public System.int PreviousActualVisibleColumn( 
   System.int column
)

Parameters

column
The index of the current column.

Return Value

The index of the previous visible column.
Example
This example uses the PreviousActualVisibleColumn method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].PreviousActualVisibleColumn(10).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].PreviousActualVisibleRow(5).ToString());
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).PreviousActualVisibleColumn(10).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).PreviousActualVisibleRow(5).ToString())
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.