public Editor(ViewContext viewContext, IJavaScriptInitializer initializer, IUrlGenerator urlGenerator) : base(viewContext, initializer) { UrlGenerator = urlGenerator; DefaultToolGroup = new EditorToolGroup(this); Template = new HtmlTemplate(); Messages = new EditorMessages(); StyleSheets = new List<string>(); Pdf = new PDFSettings(); new EditorToolFactory(DefaultToolGroup) .Formatting() .Bold().Italic().Underline() .JustifyLeft().JustifyCenter().JustifyRight() .InsertUnorderedList().InsertOrderedList() .Outdent().Indent() .CreateLink().Unlink() .InsertImage() .TableEditing(); TagName = "textarea"; ImageBrowserSettings = new EditorImageBrowserSettings(Messages.ImageBrowserMessages); FileBrowserSettings = new EditorFileBrowserSettings(Messages.FileBrowserMessages); //>> Initialization Resizable = new EditorResizableSettings(); Serialization = new EditorSerializationSettings(); //<< Initialization }
public Editor(ViewContext viewContext, IJavaScriptInitializer initializer, IUrlGenerator urlGenerator) : base(viewContext, initializer) { UrlGenerator = urlGenerator; DefaultToolGroup = new EditorToolGroup(this); Template = new HtmlTemplate(); Messages = new EditorMessages(); SerializationOptions = new EditorSerializationOptions(); StyleSheets = new List <string>(); new EditorToolFactory(DefaultToolGroup) .Formatting() .Bold().Italic().Underline() .JustifyLeft().JustifyCenter().JustifyRight() .InsertUnorderedList().InsertOrderedList() .Outdent().Indent() .CreateLink().Unlink() .InsertImage() .TableEditing(); TagName = "textarea"; ImageBrowserSettings = new EditorImageBrowserSettings(Messages.ImageBrowserMessages); }
public Editor(ViewContext viewContext, IJavaScriptInitializer initializer, IUrlGenerator urlGenerator) : base(viewContext, initializer) { UrlGenerator = urlGenerator; DefaultToolGroup = new EditorToolGroup(this); Template = new HtmlTemplate(); Messages = new EditorMessages(); StyleSheets = new List <string>(); new EditorToolFactory(DefaultToolGroup) .Bold().Italic().Underline().Strikethrough() .FontName() .FontSize() .FontColor().BackColor() .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull() .InsertUnorderedList().InsertOrderedList() .Outdent().Indent() .FormatBlock() .CreateLink().Unlink() .InsertImage(); ImageBrowserSettings = new EditorImageBrowserSettings(Messages.ImageBrowserMessages); }
public Editor(ViewContext viewContext, IJavaScriptInitializer initializer, IUrlGenerator urlGenerator) : base(viewContext, initializer) { UrlGenerator = urlGenerator; DefaultToolGroup = new EditorToolGroup(this); Template = new HtmlTemplate(); Messages = new EditorMessages(); StyleSheets = new List<string>(); new EditorToolFactory(DefaultToolGroup) .Bold().Italic().Underline().Strikethrough() .FontName() .FontSize() .FontColor().BackColor() .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull() .InsertUnorderedList().InsertOrderedList() .Outdent().Indent() .FormatBlock() .CreateLink().Unlink() .InsertImage(); ImageBrowserSettings = new EditorImageBrowserSettings(Messages.ImageBrowserMessages); }