Skip to main content
A newer version of this page is available. .

HtmlEditorCssFileCollection() Constructor

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

Namespace: DevExpress.Web.ASPxHtmlEditor

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

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