Spread ASP.NET 6.0 Product Documentation
SetColumnWidth Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : SetColumnWidth Method


column
Column index
value
Number of pixels to set the width of the column

Glossary Item Box

Sets the width of the specified column in pixels.

Syntax

Visual Basic (Declaration) 
Public Sub SetColumnWidth( _
   ByVal column As Integer, _
   ByVal value As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim column As Integer
Dim value As Integer
 
instance.SetColumnWidth(column, value)
C# 
public void SetColumnWidth( 
   int column,
   int value
)

Parameters

column
Column index
value
Number of pixels to set the width of the column

Remarks

Get the width for a column by calling the GetColumnWidth method.

Note: The value set by this method does not include the width of the adjacent grid line.

The default width for columns in the sheet is determined by the DefaultColumnWidth property.

If you prefer, you can allow users to resize columns by calling the SetColumnSizeable method.

Set the height for a row by calling the SetRowHeight method.

Example

This example illustrates the use of this member by setting the width for the specified column.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.SetColumnWidth(1, 30);
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.SetColumnWidth(1, 30)

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.