'Declaration
Public Sub AddTextAnnotationInteractive( _ ByVal Text As String, _ ByVal ForeColor As Color, _ ByVal FontName As String, _ ByVal FontStyle As FontStyle, _ ByVal FontSize As Single, _ ByVal Fill As Boolean, _ ByVal BorderColor As Color, _ ByVal BackColor As Color, _ ByVal Opacity As Single, _ ByVal Rotation As Single _ )
public void AddTextAnnotationInteractive( string Text, Color ForeColor, string FontName, FontStyle FontStyle, float FontSize, bool Fill, Color BorderColor, Color BackColor, float Opacity, float Rotation )
public procedure AddTextAnnotationInteractive( Text: String; ForeColor: Color; FontName: String; FontStyle: FontStyle; FontSize: Single; Fill: Boolean; BorderColor: Color; BackColor: Color; Opacity: Single; Rotation: Single );
public function AddTextAnnotationInteractive( Text : String, ForeColor : Color, FontName : String, FontStyle : FontStyle, FontSize : float, Fill : boolean, BorderColor : Color, BackColor : Color, Opacity : float, Rotation : float );
Parameters
- Text
- The content of the newly added annotation, that means the text to be displayed in the annotation bounding box.
- ForeColor
- A color object that defines the required color of the used font for displaying the specified text.
- FontName
- The name of the font used to write the annotation content, for example Arial.
- FontStyle
- A member of the FontStyle enumeration. The font style of the used font for displaying the annotation content.
- FontSize
- The size of the used font, in points.
- Fill
- Set this parameter to true, if you want to fill the annotation bounding box using the defined background color, otherwise set it to false.
- BorderColor
- A color object that defines the required border color of the annotation bounding box.
- BackColor
- A color object that defines the required background color of the annotation bounding box.
- Opacity
- The opacity value of the newly added annotation, from 0 (full transparency) to 1 (full opacity).
- Rotation
- The clockwise rotation of the newly added annotation, in degrees.