FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > LineBorder クラス : Right プロパティ |
その他の辺に線が描画されるかどうかを取得するには、Bottom、Left、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.Right; MessageBox.Show("The right 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.Right MessageBox.Show("It is " + b.ToString() + " that the right side of the border is drawn.");