Gets or sets the
System.Windows.Forms.Cursor mouse pointer image used when hovering over an unselected annotation object.
Syntax
Visual Basic (Declaration) | |
---|
Public Property SelectObjectCursor As Cursor |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnAutomationManager
Dim value As Cursor
instance.SelectObjectCursor = value
value = instance.SelectObjectCursor |
C# | |
---|
public Cursor SelectObjectCursor {get; set;} |
Property Value
The
System.Windows.Forms.Cursor mouse pointer image used when hovering over an unselected annotation object.
Example
This example sets the automation manager to various mouse cursors.
Visual Basic | Copy Code |
---|
Public Sub AnnAutomationManager_SelectObjectCursor(ByVal manager As AnnAutomationManager)
' Set the cursor used in design mode hovering over an unselected annotation object.
manager.SelectObjectCursor = Cursors.Cross
' Set the cursor used in design mode when the cursor is over a selected object (but not over the control points).
manager.SelectedObjectCursor = Cursors.Hand
' Set the cursor used in design mode when cursor is over a control point.
manager.ControlPointCursor = Cursors.Cross
' Set the cursor used in design mode when dragging and selecting a group of objects
manager.SelectRectangleCursor = Cursors.Default
' Set the cursor used in run mode when hovering over an object
manager.RunCursor = Cursors.Hand
' Set the cursor used in design mode when hovering over an upper left/lower right control point
manager.ControlPointNWSECursor = Cursors.PanNW
' Set the cursor used in design mode when hovering over an upper right/lower left control point
manager.ControlPointNESWCursor = Cursors.PanNE
' Set the cursor used in design mode when hovering over an upper/lower middle control point
manager.ControlPointNSCursor = Cursors.PanNorth
' Set the cursor used in design mode when hovering over an side middle control point
manager.ControlPointWECursor = Cursors.PanWest
' Set the cursor used in design mode when hovering over the rotate center control point
manager.RotateCenterControlPointCursor = Cursors.Hand
' Set the cursor used in design mode when hovering over the rotate gripper control point
manager.RotateGripperControlPointCursor = Cursors.SizeAll
End Sub |
C# | Copy Code |
---|
public void AnnAutomationManager_SelectObjectCursor(AnnAutomationManager manager)
{
// Set the cursor used in design mode hovering over an unselected annotation object.
manager.SelectObjectCursor = Cursors.Cross;
// Set the cursor used in design mode when the cursor is over a selected object (but not over the control points).
manager.SelectedObjectCursor = Cursors.Hand;
// Set the cursor used in design mode when cursor is over a control point.
manager.ControlPointCursor = Cursors.Cross;
// Set the cursor used in design mode when dragging and selecting a group of objects
manager.SelectRectangleCursor = Cursors.Default;
// Set the cursor used in run mode when hovering over an object
manager.RunCursor = Cursors.Hand;
// Set the cursor used in design mode when hovering over an upper left/lower right control point
manager.ControlPointNWSECursor = Cursors.PanNW;
// Set the cursor used in design mode when hovering over an upper right/lower left control point
manager.ControlPointNESWCursor = Cursors.PanNE;
// Set the cursor used in design mode when hovering over an upper/lower middle control point
manager.ControlPointNSCursor = Cursors.PanNorth;
// Set the cursor used in design mode when hovering over an side middle control point
manager.ControlPointWECursor = Cursors.PanWest;
// Set the cursor used in design mode when hovering over the rotate center control point
manager.RotateCenterControlPointCursor = Cursors.Hand;
// Set the cursor used in design mode when hovering over the rotate gripper control point
manager.RotateGripperControlPointCursor = Cursors.SizeAll;
} |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also