Spread for ASP.NET 9.0 Product Documentation
Column Property (Cell)
Example 


Gets the column that contains this cell.
Syntax
'Declaration
 
Public ReadOnly Property Column As Column
'Usage
 
Dim instance As Cell
Dim value As Column
 
value = instance.Column
public Column Column {get;}

Property Value

Column object for the column containing this cell
Example
This example creates a Cell object and returns the Column objects width to a text box.
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[0,0];
int w;
w=mycell.Column.Width;
TextBox1.Text=Convert.ToString(w);
Dim mycell As FarPoint.Web.Spread.Cell
mycell=FpSpread1.Cells(0,0)
Dim w As Integer
w=mycell.Column.Width
TextBox1.Text=w
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Cell Class
Cell Members

 

 


Copyright © GrapeCity, inc. All rights reserved.