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

ASPxWebControl.CssFilePath Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public virtual string CssFilePath { get; set; }

Property Value

Type Default Description
String String.Empty

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

Remarks

Use the CssFilePath property together with the ASPxWebControl.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 ASPxWebControl.CssPostfix property.

See Also