Spread Windows Forms 12.0 Product Documentation
GetActiveColumnViewportIndex() Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class > GetActiveColumnViewportIndex Method : GetActiveColumnViewportIndex() Method
Gets the index of the active viewport column.
Syntax
'Declaration
 
Public Overloads Function GetActiveColumnViewportIndex() As Integer
'Usage
 
Dim instance As SpreadView
Dim value As Integer
 
value = instance.GetActiveColumnViewportIndex()
public int GetActiveColumnViewportIndex()

Return Value

Integer index of the active viewport column
Remarks

The viewport column index is zero-based, so the first (leftmost) viewport column has an index of 0.

Example
This example uses the GetActiveColumnViewportIndex method.
FarPoint.Win.Spread.SpreadView sv;
sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0, 0);
label1.Text = sv.GetActiveColumnViewportIndex().ToString();
Dim sv As FarPoint.Win.Spread.SpreadView
sv = FpSpread1.GetRootWorkbook
sv.AddViewport(0, 0)
Label1.Text = sv.GetActiveColumnViewportIndex().ToString()
See Also

Reference

SpreadView Class
SpreadView Members
Overload List
Customizing Viewports