FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > ElementWindowless クラス : State プロパティ |
'Declaration Public Overridable Property State As ElementState
'使用法 Dim instance As ElementWindowless Dim value As ElementState instance.State = value value = instance.State
public virtual ElementState State {get; set;}
このプロパティは、要素の状態(Active、Inverted、Inactiveのいずれか)を取得または設定するときに使用します。
注意:一部の要素では、状態が変更されても外観は変わりません。 |
このプロパティが使用できるのは実行時のみです。
Font f = new System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold); element.Font = f; element.State = FarPoint.Win.ElementState.Inverted;
Dim f As New System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold) element.Font = f element.State = FarPoint.Win.ElementState.Inverted