PowerTools ActiveReports for .NET 9.0J
CharacterSpacing プロパティ (TextBox)
使用例 

文字ピッチを取得または設定します。単位はポイントです。
構文
'宣言
 
Public Property CharacterSpacing As Single
public float CharacterSpacing {get; set;}
解説
XLS、RTF、テキストの各形式へエクスポートする際に、文字間隔が広がったり縮まったりすることがあります。
使用例
private void detail_Format(object sender, EventArgs e) 
{ 
   this.textBox1.CanGrow = true; 
   this.textBox1.MultiLine = true; 
   this.textBox1.CharacterSpacing = 2; 
}
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.TextBox1.CanGrow = True
   Me.TextBox1.MultiLine = True
   Me.TextBox1.CharacterSpacing = 2
End Sub
参照

関連項目

TextBox クラス
TextBox メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.