Spread ASP.NET 6.0 Product Documentation
Label Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Row Class : Label Property


Glossary Item Box

Gets or sets the header text for this row.

Syntax

Visual Basic (Declaration) 
Public Property Label As String
Visual Basic (Usage)Copy Code
Dim instance As Row
Dim value As String
 
instance.Label = value
 
value = instance.Label
C# 
public string Label {get; set;}

Property Value

String containing the label for this row

Remarks

Row objects returned by the Rows object's Default property and Row objects in the column or row headers do not have a label.

Example

This example creates a spreadsheet with 10 columns and 20 rows. A Row object is created and assigned to the second row of the sheet. The row header is given custom text using the Label property, which is also returned to a text box.
C#Copy Code
FpSpread1.ActiveSheetView.ColumnCount=10;
FpSpread1.ActiveSheetView.PageSize=20;
FpSpread1.ActiveSheetView.RowCount=20;
FarPoint.Web.Spread.Rowmyrow;
myrow=FpSpread1.ActiveSheetView.Rows[1];
myrow.Label="FarPoint";
TextBox1.Text=myrow.Label;
Visual BasicCopy Code
FpSpread1.ActiveSheetView.ColumnCount=10
FpSpread1.ActiveSheetView.PageSize=20
FpSpread1.ActiveSheetView.RowCount=20
DimmyrowAsFarPoint.Web.Spread.Row
myrow=FpSpread1.ActiveSheetView.Rows(1)
myrow.Label="Int"
TextBox1.Text=myrow.Label

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.