Skip to main content
Tab

StylesBase.CssFilePath Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public 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 StylesBase.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 StylesBase.CssPostfix property.

See Also