Back to Devexpress

BorderWrapper Class

aspnet-devexpress-dot-web-37d67545.md

latest3.0 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class BorderWrapper :
    BorderBase
vb
Public Class BorderWrapper
    Inherits BorderBase

The following members return BorderWrapper objects:

Show 14 links

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).

aspx
<dx:ASPxGridView ID="gridView" runat="server" ...>  
    <Styles>  
        <Cell>  
            <Border BorderColor="Black" BorderStyle="Solid" BorderWidth="2px" />  
        </Cell>  
    </Styles>  
    <Columns>  
        ...  
    </Columns>  
</dx:ASPxGridView>

Implements

IStateManager

Inheritance

Object StateManager BorderBase BorderWrapper

See Also

BorderWrapper Members

DevExpress.Web Namespace