Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

IModelViewLayoutElementWeb.CustomCSSClassName Property

Specifies the name of the CSS class to be applied to the target layout item in the new web UI.

Namespace: DevExpress.ExpressApp.Web.SystemModule

Assembly: DevExpress.ExpressApp.Web.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Web

Declaration

string CustomCSSClassName { get; set; }

Property Value

Type Description
String

A string which is the name of the custom CSS class.

Remarks

Use the CustomCSSClassName property to change a specific element style in the layout. Note that this property is not used for the Main layout group.

Add the FullNameCSS CSS class in the Default.aspx file to customize the FullName View Item‘s color and size.

<!--...-->
<head runat="server">
    <title>Main Page</title>
    <meta http-equiv="Expires" content="0" />
    <style type="text/css">
        .FullNameCSS
        {
            font-size: 25px;
            color: darkblue;
        }
<!--...-->

Invoke the Model Editor for the ASP.NET Web Forms module or application project. Navigate to the Views | <DetailView> | Layout node, find the FullName layout item node and set the CustomCSSClassName property value to “FullNameCSS”.

FullNameCSS_ModelEditor

The image below demonstrates the result:

CustomCSSClassName

Refer to the How to: Customize ASP.NET Web Forms Layout Elements Using Custom CSS Classes topic for more examples.

See Also