mouseLinkCursor2

Change the mouse cursor shown over links.
[write-only property] mouseLinkCursor2([in] IUnknown *cursor)
This property sets the icon (a Picture object) used as the mouse pointer when the mouse is over a hyperlink.

Setting mouseLinkCursor2 to Nothing will reset the over-link cursor back to its default.

Note: setting the mouseCursor2 property sets both the normal and link cursors, so make sure to set call mouseCursor2 first, and mouseLinkCursor2 second. To set just the normal (non-link) cursor, first set mouseCursor2, then set mouseLinkCursor2 to Nothing.

The mouseLinkCursor2 property is identical to the mouseLinkCursor property, except for the declared argument type. This works around a problem with IPicture marshaling in newer versions of .NET. See the code example below.

C#:
System.Windows.Forms.Cursor cursor = ....; viewer.mouseLinkCursor2 = CursorConverter.convert(cursor); // This wrapper allows us to use the GetIPictureFromCursor function, // which is a protected member of the AxHost class. class CursorConverter : System.Windows.Forms.AxHost { private CursorConverter() : base(string.Empty) { } public static object convert(Cursor cursor) { return GetIPictureFromCursor(cursor); } }
mouseCursor
mouseCursor2
mouseLinkCursor