BorderWrapper Class
Contains settings allowing border options to be completely defined for all the four sides of different objects.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Related API Members
The following members return BorderWrapper objects:
Remarks
The BorderWrapper class properties access the border settings - width, style, and color values for all the four sides of the object. Use the Border property to access the BorderWrapper class instances of the corresponding object (for instance, via the AppearanceStyleBase.BorderBottom or AppearanceStyleBase.Border property).
<dx:ASPxGridView ID="gridView" runat="server" ...>
<Styles>
<Cell>
<Border BorderColor="Black" BorderStyle="Solid" BorderWidth="2px" />
</Cell>
</Styles>
<Columns>
...
</Columns>
</dx:ASPxGridView>
Implements
Inheritance
Object
StateManager
BorderBase
BorderWrapper
See Also