'Usage Dim color As Color Dim instance As New LineBorder(color)
Parameters
- color
- Color of the line
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())