Visual Basic (Declaration) | |
---|---|
Public Overloads Function GetViewportLeftColumn( _ ByVal columnViewportIndex As Integer _ ) As Integer |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As FpSpread Dim columnViewportIndex As Integer Dim value As Integer value = instance.GetViewportLeftColumn(columnViewportIndex) |
C# | |
---|---|
public int GetViewportLeftColumn( int columnViewportIndex ) |
Parameters
- columnViewportIndex
- Viewport column index
Return Value
Integer index of the leftmost column of the viewportThe viewport column index is zero-based, so the first (leftmost) viewport column has an index of 0.
C# | ![]() |
---|---|
fpSpread1.AddViewport(0, 0);
int i;
fpSpread1.SetViewportLeftColumn(1, 5);
i = fpSpread1.GetViewportLeftColumn(1);
textBox1.Text = i.ToString();
|
Visual Basic | ![]() |
---|---|
FpSpread1.AddViewport(0, 0) Dim i As Integer FpSpread1.SetViewportLeftColumn(1, 5) i = FpSpread1.GetViewportLeftColumn(1) TextBox1.Text = i.ToString() |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2