Spread WPF Documentation
GetViewportLeftColumn Method (Worksheet)
Example 


The index of the column viewport.
Gets the viewport left column.
Syntax
'Declaration
 
Public Function GetViewportLeftColumn( _
   ByVal columnViewportIndex As System.Integer _
) As System.Integer
'Usage
 
Dim instance As Worksheet
Dim columnViewportIndex As System.Integer
Dim value As System.Integer
 
value = instance.GetViewportLeftColumn(columnViewportIndex)
public System.int GetViewportLeftColumn( 
   System.int columnViewportIndex
)

Parameters

columnViewportIndex
The index of the column viewport.

Return Value

The viewport left column.
Example
This example uses the GetViewportLeftColumn method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetViewportHeight(0).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetViewportInfo().ColumnViewportCount.ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetViewportLeftColumn(0).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetViewportTopRow(0).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetViewportWidth(0).ToString());
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetViewportHeight(0).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetViewportInfo.ColumnViewportCount.ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetViewportLeftColumn(0).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetViewportTopRow(0).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetViewportWidth(0).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.