ExtensionsFactory.RenderStyleSheets(Page, String, StyleSheet[]) Method
In This Article
Renders the specified style sheets in the response.
Namespace: DevExpress.Web.Mvc.UI
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public void RenderStyleSheets(
Page page,
string clientUIControlColorScheme,
params StyleSheet[] cssItems
)
#Parameters
Name | Type | Description |
---|---|---|
page | Page | The page object. |
client |
String | A string value specifying the color scheme for client controls (“light” or “dark”). |
css |
Style |
An array of Style |
#Remarks
The RenderStyleSheets method is used to attach the necessary stylesheet files of the desired DevExpress theme. This method should be called within the HEAD tag of view pages (in most cases, it’s reasonable to call it in the Site.Master page).
See Applying Themes to learn more.
See Also