'Declaration
Public Property RectBorderSize As Double
public double RectBorderSize {get; set;}
public read-write property RectBorderSize: Double;
public function get,set RectBorderSize : double
You can find out, if this rectangle is currently defined and drawn, using the IsRect method.
'Declaration
Public Property RectBorderSize As Double
public double RectBorderSize {get; set;}
public read-write property RectBorderSize: Double;
public function get,set RectBorderSize : double
'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 = Color.FromArgb(255, 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 = Color.FromArgb(255, 255, 69, 0);
GdViewer1.RectBorderSize = 2;