Interface IContextMenu
Namespace: Telerik.Windows.Documents.UI.Extensibility
Assembly: Telerik.Windows.Documents.dll
Syntax
public interface IContextMenu
Methods
Hide()
Hides the menu.
Declaration
void Hide()
Show(Point, RadRichTextBox)
Shows the context menu at specified location, relative to passed RadRichTextBox.
Declaration
void Show(Point location, RadRichTextBox radRichTextBox)
Parameters
System.Windows.Point
location
The location to show at. |
RadRichTextBox
radRichTextBox
RadRichTextBox to attach to. |
Show(Point, RadRichTextBox, WordInfo)
Shows the context menu at specified location, relative to passed RadRichTextBox, with list of suggestions for incorrect word
Declaration
void Show(Point location, RadRichTextBox radRichTextBox, WordInfo incorrectWordInfo)
Parameters
System.Windows.Point
location
The location to show at. |
RadRichTextBox
radRichTextBox
RadRichTextBox to attach to. |
WordInfo
incorrectWordInfo
The word info to show suggestions for. |
Events
Closed
Occurs when context menu is closed.
Declaration
event EventHandler Closed
Event Type
System.EventHandler
|
Opened
Occurs when context menu is opened.
Declaration
event EventHandler<ContextMenuPlacementEventArgs> Opened
Event Type
System.EventHandler<ContextMenuPlacementEventArgs>
|