You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/toolbar/appearance.md
+37-1Lines changed: 37 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,41 @@ position: 35
12
12
13
13
This article outlines the available ToolBar parameters, which control its appearance.
14
14
15
+
## FillMode
16
+
17
+
The `FillMode` parameter controls if the ToolBar will have a background and borders. To set the parameter value, use the `string` members of the static class `ThemeConstants.ToolBar.FillMode`.
18
+
19
+
|`FillMode` Class Member | String Value |
20
+
| --- | --- |
21
+
|`Solid` (default) |`"solid"`|
22
+
|`Flat`|`"flat"`|
23
+
|`Outline`|`"outline"`|
24
+
25
+
>caption The built-in fill modes
26
+
27
+
````CSHTML
28
+
@{
29
+
var fields = typeof(Telerik.Blazor.ThemeConstants.ToolBar.FillMode)
You can increase or decrease the size of the ToolBar by setting the `Size` parameter to a member of the `Telerik.Blazor.ThemeConstants.ToolBar.Size` class:
@@ -27,7 +62,8 @@ You can increase or decrease the size of the ToolBar by setting the `Size` param
27
62
````CSHTML
28
63
@{
29
64
var fields = typeof(Telerik.Blazor.ThemeConstants.ToolBar.Size)
0 commit comments