aspnet-devexpress-dot-web-8a60e100.md
Defines style settings for the layout item’s nested editors.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class NestedControlStyle :
AppearanceStyleBase
Public Class NestedControlStyle
Inherits AppearanceStyleBase
The following members return NestedControlStyle objects:
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;
});
...
Object MarshalByRefObject Component Style AppearanceStyleBase NestedControlStyle
See Also