FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > BevelBorder クラス : Left プロパティ |
'Declaration Public ReadOnly Property Left As Boolean
'使用法 Dim instance As BevelBorder Dim value As Boolean value = instance.Left
public bool Left {get;}
FarPoint.Win.BevelBorder bevel = new FarPoint.Win.BevelBorder(BevelBorderType.Lowered, Color.Blue, Color.LightBlue, (int)1.5, true, false, true, false); bool b = bevel.Bottom; bool t = bevel.Top; bool r = bevel.Right; bool l = bevel.Left; if (b && t && r && l) { MessageBox.Show("The border covers all the sides"); } else { MessageBox.Show("Some of the sides don't have the border"); }
Dim bevel As New FarPoint.Win.BevelBorder(BevelBorderType.Lowered, Color.Blue, Color.LightBlue, 1.5, True, False, True, False) Dim b As Boolean = bevel.Bottom Dim t As Boolean = bevel.Top Dim r As Boolean = bevel.Right Dim l As Boolean = bevel.Left If b AndAlso t AndAlso r AndAlso l Then MessageBox.Show("The border covers all the sides") Else MessageBox.Show("Some of the sides don't have the border") End If