-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathDocMatSlider.razor
More file actions
131 lines (122 loc) · 2.57 KB
/
DocMatSlider.razor
File metadata and controls
131 lines (122 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@inherits MatBlazor.Demo.Components.BaseDocComponent
@* THIS FILE IS AUTOGENERATED FROM C# XML Comments! *@
@* ALL MANUAL CHANGES WILL BE REMOVED! *@
@if (!Secondary) {<h3 class="mat-h3">@Header</h3> } else { <h5 class="mat-h5">@Header</h5> }
<p>Material Design Slider for Blazor. Sliders let users select from a range of values by moving the slider thumb.</p>
<div><table class="article-table mat-elevation-z5 mdc-theme--surface">
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
<tr>
<td style="font-weight: bold;">TValue</td>
<td>Generic argument</td>
<td>sbyte, byte, short, ushort, int, uint, long, ulong, char, float, double, decimal, decimal?</td>
</tr>
<tr>
<td>Attributes</td>
<td>Dictionary<String,Object></td>
<td>Gets or sets a collection of additional attributes that will be applied to the created element.</td>
</tr>
<tr>
<td>Class</td>
<td>String</td>
<td>Specifies one or more classnames for an DOM element.</td>
</tr>
<tr>
<td>Disabled</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>Discrete</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>EnableStep</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>Id</td>
<td>String</td>
<td></td>
</tr>
<tr>
<td>Immediate</td>
<td>Boolean</td>
<td>When set to true, any change to the slider immediately changes the value.</td>
</tr>
<tr>
<td>Label</td>
<td>String</td>
<td></td>
</tr>
<tr>
<td>Markers</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>Pin</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>RefBack</td>
<td>ForwardRef</td>
<td></td>
</tr>
<tr>
<td>Step</td>
<td>TValue</td>
<td></td>
</tr>
<tr>
<td>Style</td>
<td>String</td>
<td>Specifies an inline style for an DOM element.</td>
</tr>
<tr>
<td>ValidationDisabled</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>Value</td>
<td>TValue</td>
<td>Gets or sets the value of the input. This should be used with two-way binding.</td>
</tr>
<tr>
<td>ValueChanged</td>
<td>EventCallback<TValue></td>
<td>Gets or sets a callback that updates the bound value.</td>
</tr>
<tr>
<td>ValueExpression</td>
<td>Expression<Func<TValue>></td>
<td>Gets or sets an expression that identifies the bound value.</td>
</tr>
<tr>
<td>Max</td>
<td>TValue</td>
<td></td>
</tr>
<tr>
<td>Min</td>
<td>TValue</td>
<td></td>
</tr>
<tr>
<td>Ref</td>
<td>ElementReference</td>
<td>Returned ElementRef reference for DOM element.</td>
</tr>
</table></div>
@code
{
[Parameter]
public string Header { get; set; } = "MatSlider";
}