'Declaration
Public Property RectBorderColor As Color
public Color RectBorderColor {get; set;}
public read-write property RectBorderColor: Color;
public function get,set RectBorderColor : Color
You can find out, if this rectangle is currently defined, using the IsRect method.
'Declaration
Public Property RectBorderColor As Color
public Color RectBorderColor {get; set;}
public read-write property RectBorderColor: Color;
public function get,set RectBorderColor : Color
'We assume that the GdViewer1 control has been properly integrated.
'Setting some custom properties (the border color and the border size) for the rectangle of selection.
GdViewer1.RectBorderColor = GdViewer1.ARGB(255, 69, 0)
GdViewer1.RectBorderSize = 2
//We assume that the GdViewer1 control has been properly integrated
//Setting some custom properties (the border color and the border size) for the rectangle of selection.
GdViewer1.RectBorderColor = GdViewer1.ARGB(255, 69, 0);
GdViewer1.RectBorderSize = 2;