Gets or sets the border style.
Namespace:
C1.Web.EditorAssembly: C1.Web.Editor.2 (in C1.Web.Editor.2.dll)
Syntax
| C# |
|---|
[ThemeableAttribute(true)] [NotifyParentPropertyAttribute(true)] public BorderStyle BorderStyle { get; set; } |
| Visual Basic (Declaration) |
|---|
<ThemeableAttribute(True)> _ <NotifyParentPropertyAttribute(True)> _ Public Property BorderStyle As BorderStyle Get Set |
Examples
This code sets the BorderStyle of a ToolbarItem to Inset:
Copy CodeVisual Basic
Copy CodeC#
C1WebEditor1.ToolBarItemStyle.BorderStyle = BorderStyle.Inset |
C1WebEditor1.ToolBarItemStyle.BorderStyle = BorderStyle.Inset; |