Skip to main content
A newer version of this page is available. .
Tab

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

NuGet Package: DevExpress.Web

Declaration

public class BorderWrapper :
    BorderBase

The following members return BorderWrapper objects:

Show 72 links
Library Related API Members
ASP.NET Bootstrap Controls BootstrapAccordion.Border
BootstrapBinaryImage.Border
BootstrapButton.Border
BootstrapButton.FocusRectBorder
BootstrapButtonEdit.Border
BootstrapCalendar.Border
BootstrapCallbackPanel.Border
BootstrapCardView.Border
BootstrapCardViewColumnLayoutItem.Border
BootstrapCardViewCommandLayoutItem.Border
BootstrapCardViewLayoutGroup.Border
BootstrapCardViewTabbedLayoutGroup.Border
BootstrapCheckBox.Border
BootstrapCheckBoxList.Border
BootstrapColorEdit.Border
BootstrapComboBox.Border
BootstrapDateEdit.Border
BootstrapDropDownEdit.Border
BootstrapEditModeCommandLayoutItem.Border
BootstrapFileManager.Border
BootstrapFormLayout.Border
BootstrapGridView.Border
BootstrapGridViewColumnLayoutItem.Border
BootstrapGridViewLayoutGroup.Border
BootstrapGridViewTabbedLayoutGroup.Border
BootstrapHyperLink.Border
BootstrapImage.Border
BootstrapLayoutGroup.Border
BootstrapLayoutItem.Border
BootstrapListBox.Border
BootstrapMemo.Border
BootstrapMenuBase.Border
BootstrapPageControl.Border
BootstrapPager.Border
BootstrapPopupControl.Border
BootstrapPopupMenu.Border
BootstrapProgressBar.Border
BootstrapRadioButton.Border
BootstrapRadioButtonList.Border
BootstrapRibbon.Border
BootstrapRichEdit.Border
BootstrapScheduler.Border
BootstrapSchedulerDateNavigator.Border
BootstrapSchedulerResourceNavigator.Border
BootstrapSchedulerTimeZoneEdit.Border
BootstrapSchedulerViewNavigator.Border
BootstrapSchedulerViewSelector.Border
BootstrapSchedulerViewVisibleInterval.Border
BootstrapSpinEdit.Border
BootstrapSpreadsheet.Border
BootstrapTabbedLayoutGroup.Border
BootstrapTabControl.Border
BootstrapTagBox.Border
BootstrapTextBox.Border
BootstrapTimeEdit.Border
BootstrapTreeView.Border
BootstrapUploadControl.Border
BootstrapWebClientUIWidget.Border
ASP.NET Web Forms Controls AppearanceStyleBase.Border
ASPxButton.FocusRectBorder
ASPxWebControl.Border
ColorTableCellStyle.ColorBorder
EmptyLayoutItem.Border
FileManagerHighlightStyle.Border
HtmlEditorAreaStyle.Border
HtmlEditorStatusBarStyle.Border
LayoutGroup.Border
LayoutItem.Border
LevelProperties.Border
SiteMapColumn.Border
TabbedLayoutGroup.Border
TitleIndexColumn.Border

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

See Also