Version

UseDefaultEditorCursor Method (UltraEditorProxyOwnerBase)

Returns whether the editor should use its default cursor
Syntax
'Declaration
 
Public Overrides Function UseDefaultEditorCursor( _
   ByVal ownerContext As Object _
) As Boolean
public override bool UseDefaultEditorCursor( 
   object ownerContext
)

Parameters

ownerContext
The context that was passed into the GetEmbeddableElement(UIElement,EmbeddableEditorOwnerBase,Object,EmbeddableUIElementBase) method.

Return Value

A boolean indicating whether the editor should use its default cursor.
Remarks

By default, an editor might display a custom cursor, appropriate to the type of editor it is; for example, the EditorWithText editor displays an "I-Beam" cursor when it is enabled to indicate that it supports selection of text.

If the editor's owner does not want the editor to display its default cursor, it must return false from this method.



The default implementation returns true.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also