BorderWrapper.BorderStyle Property
Gets or sets the border style for all the four sides of a control.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
BorderStyle | NotSet | One of the BorderStyle enumeration values. |
Remarks
Use the BorderStyle property to specify the border style for all the four sides of a control. This property is set using one of the BorderStyle enumeration values.
<dx:ASPxGridView ID="gridView" runat="server" ...>
<Styles>
<Cell>
<Border BorderColor="Black" BorderStyle="Solid" BorderWidth="2px" />
</Cell>
</Styles>
<Columns>
...
</Columns>
</dx:ASPxGridView>
See Also