'Declaration
Public Sub AddRectangleAnnotInteractive( _ ByVal Fill As Boolean, _ ByVal Stroke As Boolean, _ ByVal BackColor As Color, _ ByVal BorderColor As Color, _ ByVal BorderWidth As Single, _ ByVal Opacity As Single _ )
public void AddRectangleAnnotInteractive( bool Fill, bool Stroke, Color BackColor, Color BorderColor, float BorderWidth, float Opacity )
public procedure AddRectangleAnnotInteractive( Fill: Boolean; Stroke: Boolean; BackColor: Color; BorderColor: Color; BorderWidth: Single; Opacity: Single );
public function AddRectangleAnnotInteractive( Fill : boolean, Stroke : boolean, BackColor : Color, BorderColor : Color, BorderWidth : float, Opacity : float );
public: void AddRectangleAnnotInteractive( bool Fill, bool Stroke, Color BackColor, Color BorderColor, float BorderWidth, float Opacity )
public: void AddRectangleAnnotInteractive( bool Fill, bool Stroke, Color BackColor, Color BorderColor, float BorderWidth, float Opacity )
Parameters
- Fill
- Set this parameter to true, if you want to fill the rectangle using the defined background color, otherwise set it to false.
- Stroke
- Set this parameter to true, if you want to stroke the rectangle using the defined border color, otherwise set it to false.
- BackColor
- A color object that defines the required background color of the newly added rectangle annotation.
- BorderColor
- A color object that defines the required border color of the newly added rectangle annotation.
- BorderWidth
- The border width of the newly added rectangle annotation, in inches.
- Opacity
- The opacity value of the newly added rectangle annotation, from 0 (full transparency) to 1 (full opacity).