'Declaration
Public Property RectBorderSize As Integer
public int RectBorderSize {get; set;}
public read-write property RectBorderSize: Integer;
public function get,set RectBorderSize : int
You can find out, if this rectangle is currently defined and drawn, using the IsRect method.
'Declaration
Public Property RectBorderSize As Integer
public int RectBorderSize {get; set;}
public read-write property RectBorderSize: Integer;
public function get,set RectBorderSize : int
'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.SetRectBorderColor(GdViewer1.ARGBI(255, 255, 69, 0)) 'Calling the method above does the same as setting the property as below. '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.SetRectBorderColor(GdViewer1.ARGBI(255, 255, 69, 0)); //Calling the method above does the same as setting the property as below. //GdViewer1.RectBorderColor = GdViewer1.ARGB(255, 69, 0); GdViewer1.RectBorderSize = 2;