NestedControlStyle Class
Defines style settings for the layout item’s nested editors.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Related API Members
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:
...
<Items>
<dx:LayoutItem ... >
<NestedControlStyle>
<DisabledStyle ForeColor="Black" />
</NestedControlStyle>
</dx:LayoutItem>
...
</Items>
...
MVC:
...
settings.Items.Add(i => {
...
i.NestedControlStyle.DisabledStyle.ForeColor = Color.Red;
});
...
Inheritance
Object
MarshalByRefObject
Component
Style
AppearanceStyleBase
NestedControlStyle
See Also