GdPicture.NET.14
GdPicture14 Namespace / GdViewer Class / AnnotationResizeRotateHandlesColor Property
Example





In This Topic
AnnotationResizeRotateHandlesColor Property (GdViewer)
In This Topic
Gets or sets the color that is used when drawing the resizing and rotating handles when selecting GdPicture XMP annotations. This value is common for all annotations.

The handles are displayed as visible dots (round marks) respecting both the AnnotationResizeRotateHandlesColor and the GdViewer.AnnotationResizeRotateHandlesScale properties.

Syntax
'Declaration
 
Public Property AnnotationResizeRotateHandlesColor As Color
 

Property Value

The default value is Color.Navy, that is Color.FromArgb(255, 0, 0, 128).
Example
How to change the properties of the control's resizing and rotating handles.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.AnnotationResizeRotateHandlesColor = Color.FromArgb(255, 255, 127, 80)
GdViewer1.AnnotationResizeRotateHandlesScale = 0.5F
GdViewer1.AnnotationSelectionLineColor = Color.FromArgb(255, 0, 0, 255)
See Also