Visual Basic (Declaration) | |
---|---|
Public ReadOnly Property Rows As Rows |
C# | |
---|---|
public Rows Rows {get;} |
Property Value
Rows object with the rowsThis property is available at run time only.
This property allows reference to a row of cells or several rows of cells in the sheet.
This example assigns a SheetView object to the active sheet and puts a border around all the cells in the first row.
C# | Copy Code |
---|---|
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView; FarPoint.Web.Spread.Borderbord=newFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Teal,2); sv.Rows[0].Border=bord; |
Visual Basic | Copy Code |
---|---|
DimsvAsFarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView DimbordAsNewFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Teal,2) sv.Rows(0).Border=bord |
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
Reference
SheetView ClassSheetView Members
Rows Class