Spread Windows Forms 10.0 Product Documentation
Right Property (BevelBorder)
Example 


Gets whether the line is drawn on the right edge of the border.
Syntax
'Declaration
 
Public ReadOnly Property Right As Boolean
'Usage
 
Dim instance As BevelBorder
Dim value As Boolean
 
value = instance.Right
public bool Right {get;}

Property Value

Boolean value: true if right side border line is drawn; false otherwise
Example
This example creates a bevel border.
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 displays on all the sides."); 
} 
else 
{ 
      MessageBox.Show("Some of the sides do not display 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 displays on all the sides.")
Else
      MessageBox.Show("Some of the sides do not display the border.")
End If
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

BevelBorder Class
BevelBorder Members

 

 


Copyright © GrapeCity, inc. All rights reserved.