Gets or sets the border style.

Namespace:  C1.Web.Editor
Assembly:  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
C1WebEditor1.ToolBarItemStyle.BorderStyle = BorderStyle.Inset
Copy CodeC#
C1WebEditor1.ToolBarItemStyle.BorderStyle = BorderStyle.Inset;

See Also