FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > LineBorder クラス : Left プロパティ |
'Declaration Public ReadOnly Property Left As Boolean
'使用法 Dim instance As LineBorder Dim value As Boolean value = instance.Left
public bool Left {get;}
その他の辺に線が描画されるかどうかを取得するには、Bottom、Right、Topの各プロパティを取得します。境界線の色、幅、および余白を取得するには、Color、Thickness、Insetの各プロパティを取得します。
特定の境界線上に線を描画するかどうかを設定するには、LineBorderコンストラクタ(Color,Int32,Boolean,Boolean,Boolean,Boolean)を使用します。
FarPoint.Win.LineBorder lb = new FarPoint.Win.LineBorder(Color.Red, 3, true, false, true, false); bool b = lb.Left; MessageBox.Show("The left of the border is drawn is " + b.ToString());
Dim lb As New FarPoint.Win.LineBorder(Color.Red, 3, True, True, True, True) Dim b As Boolean = lb.Left MessageBox.Show("It is " + b.ToString() + " that the left side of the border is drawn.");