Gets the maximum width for the viewport column.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SpreadView
Dim columnViewportIndex As Integer
Dim value As Integer
value = instance.GetViewportPreferredWidth(columnViewportIndex) |
Parameters
- columnViewportIndex
Return Value
Integer width in pixels of the viewport column
Remarks
Example
This example shows the use of this method by returning the width for a viewport.
C# | Copy Code |
---|
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0,0);
sv.SetViewportPreferredWidth(1, 90);
listBox1.Items.Add(sv.GetViewportPreferredWidth(1).ToString()); |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AddViewport(0, 0)
sv.SetViewportPreferredWidth(1, 90)
ListBox1.Items.Add(sv.GetViewportPreferredWidth(1).ToString()) |
Requirements
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
See Also