PowerTools SPREAD for Windows Forms 8.0J
AutoHeight プロパティ


フォントに基づいてコントロール全体をサイズ変更するかどうかを取得または設定します。
構文
'Declaration
 
Public Overridable Property AutoHeight As Boolean
'使用法
 
Dim instance As SuperEditBase
Dim value As Boolean
 
instance.AutoHeight = value
 
value = instance.AutoHeight
public virtual bool AutoHeight {get; set;}

プロパティ値

Boolean 値:編集コントロールの高さを自動的に設定する場合は True、それ以外の場合は False
解説

TextWrapプロパティをTrueに設定している場合は、AutoHeightプロパティをFalseに設定できます。自動の高さは、テキストの1行のフォントの高さに基づきます。AutoHeightプロパティがTrueでテキストが折り返す場合、コントロールの高さは変更されず、1行のテキストのみが表示されます。

control.Text = "Font";
Font fvalue = new Font("Comic Sans MS",14,System.Drawing.FontStyle.Bold);
control.Font = fvalue;
control.AutoHeight = true;
control.Text = "Font"
Dim fvalue As Font
fvalue = New Font("Comic Sans MS", 14, FontStyle.Bold)
control.Font = fvalue
control.AutoHeight = True
参照

SuperEditBase クラス
SuperEditBase メンバ
TextWrap プロパティ

 

 


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