Provides methods to invoke standard editor dialogs, such as Font, Paragraph Format, Page Setup etc.
For a list of all members of this type, see EditorDialogs Members.
System.Object
Aspose.Editor.Client.EditorDialogs
[Visual Basic]
Public Class EditorDialogs
[C#]public class EditorDialogs
Remarks
You do not create instances of this class directly. Use the Dialogs property of EditorControl to execute the dialogs.
The dialogs modify formatting of the current selection in EditorControl.
Example
Brings up the Font dialog box that allows to change font formatting of the current selection.
[C#]
editorControl.Dialogs.Font();
[Visual Basic]
editorControl.Dialogs.Font()
Brings up the Paragraph Format dialog box that allows to change paragraph formatting of the current selection.
[C#]
editorControl.Dialogs.Paragraph();
[Visual Basic]
editorControl.Dialogs.Paragraph()
Requirements
Namespace: Aspose.Editor.Client
Assembly: Aspose.Editor.Client (in Aspose.Editor.Client.dll)
See Also
EditorDialogs Members | Aspose.Editor.Client Namespace | EditorControl