PowerTools SPREAD for Windows Forms 8.0J
Color プロパティ (ComplexBorderSide)


複合境界線のこの1辺の色を取得します。
構文
'Declaration
 
Public ReadOnly Property Color As Color
'使用法
 
Dim instance As ComplexBorderSide
Dim value As Color
 
value = instance.Color
public Color Color {get;}

プロパティ値

複合境界線の辺の色を含むColorオブジェクト
解説
デフォルト値は Color.WindowFrame です。
次のサンプルコードは、辺の色を返します。
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(true, Color.Red, 1.5, Drawing2D.DashStyle.Solid, new float[] {0.335F, 0.5F, 0.66F, 1.0F}, new float[] {0.33F, 0.5F, 0.66F, 1.0F});
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
Color c = side.Color
MessageBox.Show("The color of the side is " + c.ToString() & ".");
Dim side As New FarPoint.Win.ComplexBorderSide(True, Color.Red, 1.5, Drawing2D.DashStyle.Solid, New Single() {0.33F, 0.5F, 0.66F, 1.0F}, New Single() {0.33F, 0.5F, 0.66F, 1.0F})
Dim bord As New FarPoint.Win.ComplexBorder(side)
Dim c As Color = side.Color
MessageBox.Show("The color of the side is " + c.ToString() + ".")
参照

ComplexBorderSide クラス
ComplexBorderSide メンバ

 

 


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