PowerTools SPREAD for Windows Forms 8.0J
Focused プロパティ (ElementWindowless)


要素にフォーカスがあるかどうかを取得します。
構文
'Declaration
 
Public Overridable ReadOnly Property Focused As Boolean
'使用法
 
Dim instance As ElementWindowless
Dim value As Boolean
 
value = instance.Focused
public virtual bool Focused {get;}

プロパティ値

Boolean 値:要素にフォーカスがある場合は True、それ以外の場合は False
解説

フォーカスを持つ要素はフォーカス矩形を表示できます。要素にフォーカス矩形を表示するかどうかと、その表示方法を指定するには、DrawFocusRectangleプロパティを設定します。

要素がフォーカスを受け取るかどうかを指定するには、CanFocusプロパティまたはEnabledプロパティを設定します。

フォーカスを要素に移動するには、Focus(Boolean)メソッドを呼び出します。

このプロパティが使用できるのは実行時のみです。

bool vbool; element.AlignHorz = FarPoint.Win.HorizontalAlignment.Left; element.AlignVert = FarPoint.Win.VerticalAlignment.Top; element.TextWrap = true; element.Text = "Let's plan on meeting at 10."; vbool = element.Focused; textBox1.Text = Convert.ToString(vbool);
Dim vbool As Boolean element.AlignHorz = FarPoint.Win.HorizontalAlignment.Left element.AlignVert = FarPoint.Win.VerticalAlignment.Top element.TextWrap = true element.Text = "Let's plan on meeting at 10." vbool = control.Focused TextBox1.Text = vbool
参照

ElementWindowless クラス
ElementWindowless メンバ
Focus メソッド
CanFocus プロパティ
DrawFocusRectangle プロパティ
Enabled プロパティ

 

 


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