aspnet-devexpress-dot-web-37d67545.md
Contains settings allowing border options to be completely defined for all the four sides of different objects.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class BorderWrapper :
BorderBase
Public Class BorderWrapper
Inherits BorderBase
The following members return BorderWrapper objects:
Show 14 links
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>
Object StateManager BorderBase BorderWrapper
See Also