FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > LineBorder クラス : Thickness プロパティ |
各辺に線が描画されるかどうかを取得するには、Bottom、Left、Right、Topの各プロパティを取得します。境界線の色と余白を取得するには、ColorプロパティとInsetプロパティを取得します。
一重境界線の幅を設定するには、LineBorderコンストラクタ(Color,Int32)、およびLineBorderコンストラクタ(Color,Int32,Boolean,Boolean,Boolean,Boolean)を使用します。
FarPoint.Win.LineBorder lb = new FarPoint.Win.LineBorder(Color.Red, 3); int i = lb.Thickness; MessageBox.Show("The thickness of the border is " + i.ToString() + " pixels.");
Dim lb As New FarPoint.Win.LineBorder(Color.Red, 3) Dim i As Integer = lb.Thickness MessageBox.Show("The thickness of the border is " + i.ToString() + " pixels.")