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

ASPxFileManager.CssFilePath Property

Gets or sets the path to a CSS file that defines the editor’s appearance.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public override string CssFilePath { get; set; }

Property Value

Type Description
String

A String value that specifies the path to the required CSS file.

Remarks

Use the CssFilePath property together with the ASPxFileManager.CssPostfix property in order to define a web control’s custom appearance using a separate CSS file. The CssFilePath property specifies the CSS file’s location which can be set by either an absolute or relative path. The specified CSS file’s content can be provided by copying the content of a sample CSS file (which can be invoked by clicking the “View CSS Sample” command in a control’s designer) and supplementing class names with a custom postfix set via the ASPxFileManager.CssPostfix property.

The style properties defined at the web control’s level override the corresponding appearance settings declared in the specified CSS file.

Example

Web Forms (declaratively):

<dx:ASPxFileManager ID="fileManager" runat="server" CssFilePath="~/App_Themes/SoftOrange/{0}/styles.css" ...>
    ...
</dx:ASPxFileManager>

Web Forms (in code):

ASPxFileManager fm = new ASPxFileManager();
...
fm.CssFilePath=Url.Content(~/App_Themes/SoftOrange/{0}/styles.css);

MVC:

@Html.DevExpress().FileManager( settings => {
    settings.Name = "fileManager";
    settings.CssFilePath=Url.Content(~/App_Themes/SoftOrange/{0}/styles.css);
    ...
}).BindToFolder(Model).GetHtml()
See Also