'Usage Dim color As Color Dim thickness As Integer Dim instance As New LineBorder(color, thickness)
Parameters
- color
- Color of the line
- thickness
- Thickness of the line, in pixels
'Usage Dim color As Color Dim thickness As Integer Dim instance As New LineBorder(color, thickness)
FarPoint.Win.LineBorder lb = new FarPoint.Win.LineBorder(Color.Red); Color c = lb.Color MessageBox.Show("The color of the border is " + c.ToString());
Dim lb As New FarPoint.Win.LineBorder(Color.Red) Dim c As Color = lb.Color MessageBox.Show("The color of the border is " + c.ToString())