[]
Represents a set of interfaces to support user-defined dialogs.
public sealed class CustomDialogs : IDisposable
To use your own dialog, implement the required interface and set the corresponding property of CustomDialogs.
The code below replaces the built-in bookmark and find/replace dialogs with customized versions of the dialogs.
private void InitCustomDialogs()
{
_editor.CustomDialogs.BookmarkDialog = new BookmarkEditorForm();
_editor.CustomDialogs.FindReplaceDialog = new FindReplaceForm();
}
| Name | Description |
|---|---|
| MessageBox | User-defined Message dialog. |
| Name | Description |
|---|---|
| BookmarkDialog | User-defined Edit or insert bookmark dialog. |
| FindReplaceDialog | User-defined Find/Replace Dialog. |
| FlashMovieDialog | User-defined Edit or insert Flash movie dialog. |
| FormattingDialog | User-defined Text Format dialog. |
| HyperlinkDialog | User-defined Edit or insert hyperlink dialog. |
| ImageDialog | User-defined Edit or insert image dialog. |
| TableCellDialog | User-defined Edit or insert table cell dialog. |
| TableColumnDialog | User-defined Edit or insert table column dialog. |
| TableDialog | User-defined Edit or insert table dialog. |
| TableRowDialog | User-defined Edit or insert table row dialog. |
| Name | Description |
|---|---|
| Dispose() | Disposes unmanaged resources |