FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > SuperEditBase クラス : 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;}
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