Back to Devexpress

NestedControlStyle Class

aspnet-devexpress-dot-web-8a60e100.md

latest2.2 KB
Original Source

NestedControlStyle Class

Defines style settings for the layout item’s nested editors.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class NestedControlStyle :
    AppearanceStyleBase
vb
Public Class NestedControlStyle
    Inherits AppearanceStyleBase

The following members return NestedControlStyle objects:

Remarks

The NestedControlStyle class contains settings that define the appearance of a layout item’s nested editors.

Web Forms:

aspx
...
<Items>
   <dx:LayoutItem ... >                   
      <NestedControlStyle>
         <DisabledStyle ForeColor="Black" />
      </NestedControlStyle>
   </dx:LayoutItem>
   ...
</Items>
...

MVC:

csharp
...
settings.Items.Add(i => {
   ...
   i.NestedControlStyle.DisabledStyle.ForeColor = Color.Red;
});
...

Implements

IComponent

IDisposable

IStateManager

Inheritance

Object MarshalByRefObject Component Style AppearanceStyleBase NestedControlStyle

See Also

NestedControlStyle Members

DevExpress.Web Namespace