MESCIUS SPREAD for Windows Forms 17.0J
Text プロパティ (TextShape)

テキスト文字列シェイプのテキストを取得または設定します。
構文
'Declaration
 
Public Overrides Property Text As String
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 メンバ

 

 


© MESCIUS inc. All rights reserved.