PowerTools SPREAD for Windows Forms 8.0J
Text プロパティ (TextShape)


テキスト文字列シェイプのテキストを取得または設定します。
構文
'Declaration
 
Public Overrides Property Text As String
'使用法
 
Dim instance As TextShape
Dim value As String
 
instance.Text = value
 
value = instance.Text
public override string Text {get; set;}

プロパティ値

テキストを含むString
次のサンプルコードは、テキストシェイプを作成します。
FarPoint.Win.Spread.DrawingSpace.TextShape ts = new FarPoint.Win.Spread.DrawingSpace.TextShape();
ts.Parent = fpSpread1;
ts.Text = "This is the text!"
ts.SetBounds(10, 10, 450, 450);

fpSpread1.ActiveSheet.AddShape(ts);
Dim ts As New FarPoint.Win.Spread.DrawingSpace.TextShape()
ts.Parent = FpSpread1
ts.Text = "This is the text!"
ts.SetBounds(10, 10, 450, 450)

FpSpread1.ActiveSheet.AddShape(ts)
参照

TextShape クラス
TextShape メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.