Gets or sets the formatted text in a cell.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Text As String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Cell
Dim value As String
instance.Text = value
value = instance.Text |
C# | |
---|
public string Text {get; set;} |
Property Value
String containing the formatted contents of this cell
Remarks
Example
This example creates a Cell object and supplies a note for the cell. When the user passes the mouse over the cell, a note appears at the mouse pointer.
C# | Copy Code |
---|
FarPoint.Web.Spread.Cellmycell;
FarPoint.Web.Spread.Insetmargin=newFarPoint.Web.Spread.Inset(20,40,50,20);
mycell=FpSpread1.Cells[0,0];
mycell.Text="NoteTest";
mycell.Locked=true;
mycell.Margin=margin;
mycell.Note="ThisistheNote";
FpSpread1.ActiveSheetView.Rows[0].Height=80; |
Visual Basic | Copy Code |
---|
DimmycellAsFarPoint.Web.Spread.Cell
DimmarginAsNewFarPoint.Web.Spread.Inset(20,40,50,20)
mycell=FpSpread1.Cells(0,0)
mycell.Text="NoteTest"
mycell.Locked=True
mycell.Margin=margin
mycell.Note="ThisistheNote"
FpSpread1.ActiveSheetView.Rows(0).Height=80 |
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