PowerTools SPREAD for Windows Forms 8.0J
Left プロパティ (LineBorder)


左辺の境界線を描画するかどうかを取得します。
構文
'Declaration
 
Public ReadOnly Property Left As Boolean
'使用法
 
Dim instance As LineBorder
Dim value As Boolean
 
value = instance.Left
public bool Left {get;}

プロパティ値

左辺の境界線を描画する場合はTrue、それ以外の場合はFalse
解説

その他の辺に線が描画されるかどうかを取得するには、BottomRightTopの各プロパティを取得します。境界線の色、幅、および余白を取得するには、ColorThicknessInsetの各プロパティを取得します。

特定の境界線上に線を描画するかどうかを設定するには、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.");
参照

LineBorder クラス
LineBorder メンバ
LineBorder Constructor(Color,Int32,Boolean,Boolean,Boolean,Boolean)
Bottom プロパティ
Color プロパティ
Inset プロパティ
Right プロパティ
Thickness プロパティ
Top プロパティ

 

 


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