-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTinyEditorConfigurationResult.cs
41 lines (33 loc) · 1.82 KB
/
TinyEditorConfigurationResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace TinyMCERTE {
public class TinyEditorConfigurationResult {
/// <summary>
/// Initializes a new instance of the <see cref="T:Sitecore.Shell.Controls.RichTextEditor.EditorConfigurationResult" /> class.
/// </summary>
public TinyEditorConfigurationResult() {
}
/// <summary>Gets or sets the Toolbar configuration section.</summary>
/// <value>The toolbar configuration section.</value>
public string EditorToolbar { get; set; }
/// <summary>Gets or sets the Plugins configuration section.</summary>
/// <value>The plugins configuration section.</value>
public string EditorPlugins { get; set; }
/// <summary>Gets or sets the Callback configuration section.</summary>
/// <value>The callback configuration section.</value>
public string EditorInitCallback { get; set; }
/// <summary>Gets or sets the EditorMenubar config element.</summary>
/// <value>The Editor Menubar section.</value>
public string EditorMenubar { get; set; }
/// <summary>Gets or sets the EditorBranding config element.</summary>
/// <value>The Editor Branding section.</value>
public string EditorBranding { get; set; }
/// <summary>Gets or sets the CSSPath config element.</summary>
/// <value>The CSS file to apply to the editor's content.</value>
public string CSSPath { get; set; }
/// <summary>Gets or sets the EditorWindowWidth config element.</summary>
/// <value>The Width of the Editor Window.</value>
public string EditorWindowWidth { get; set; }
/// <summary>Gets or sets the EditorWindowHeight config element.</summary>
/// <value>The Height of the Editor Window.</value>
public string EditorWindowHeight { get; set; }
}
}