Skip to main content

HtmlEditorCssFileCollection() Constructor

Initializes a new instance of the HtmlEditorCssFileCollection class with default settings.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public HtmlEditorCssFileCollection()

Example

protected void Page_Load(object sender, EventArgs e){
    HtmlEditorCssFileCollection MyCollection = new HtmlEditorCssFileCollection();
    HtmlEditorCssFile MyCssFile = new HtmlEditorCssFile();
    MyCssFile.FilePath = "~/MyStyles/Style1.css";
    MyCollection.Add(MyCssFile);
}
See Also