Skip to content

Commit e1c6183

Browse files
WPF-959319_Updated documentation for the PropertyGrid control Built-in-Editor
1 parent ef4e789 commit e1c6183

File tree

1 file changed

+59
-38
lines changed

1 file changed

+59
-38
lines changed

wpf/PropertyGrid/Built-in-Editor-support.md

Lines changed: 59 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -12,44 +12,65 @@ documentation: ug
1212
The [PropertyGrid](https://www.syncfusion.com/wpf-controls/propertygrid) control supports several built-in editors. Based on the property type, the built-in editors automatically assigned as value editor for the properties and it allows only the valid inputs based on property type.
1313

1414
<table>
15-
<th> S.No </th>
16-
<th> Property Type </th>
17-
<th> Default Editor </th>
18-
<tr>
19-
<td>1</td>
20-
<td>int</td>
21-
<td>IntegerTextBox</td>
22-
</tr>
23-
<tr>
24-
<td>2</td>
25-
<td>double</td>
26-
<td>DoubleTextBox</td>
27-
</tr>
28-
<tr>
29-
<td>3</td>
30-
<td>string</td>
31-
<td>TextBox</td>
32-
</tr>
33-
<tr>
34-
<td>4</td>
35-
<td>enum</td>
36-
<td>ComboBox</td>
37-
</tr>
38-
<tr>
39-
<td>5</td>
40-
<td>DateTime</td>
41-
<td>DateTimeEdit</td>
42-
</tr>
43-
<tr>
44-
<td>6</td>
45-
<td>bool</td>
46-
<td>CheckBox</td>
47-
</tr>
48-
<tr>
49-
<td>7</td>
50-
<td>Brush</td>
51-
<td>ColorPicker</td>
52-
</tr>
15+
<thead>
16+
<tr>
17+
<th>Property Type</th>
18+
<th>Default Editor</th>
19+
<th>Control used</th>
20+
</tr>
21+
</thead>
22+
<tbody>
23+
<tr>
24+
<td>int</td>
25+
<td>IntegerTextBoxEditor</td>
26+
<td>IntegerTextBox</td>
27+
</tr>
28+
<tr>
29+
<td>double</td>
30+
<td>DoubleTextBoxEditor</td>
31+
<td>DoubleTextBox</td>
32+
</tr>
33+
<tr>
34+
<td>string</td>
35+
<td>TextBoxEditor</td>
36+
<td>TextBox</td>
37+
</tr>
38+
<tr>
39+
<td>enum</td>
40+
<td>EnumComboEditor</td>
41+
<td>ComboBox</td>
42+
</tr>
43+
<tr>
44+
<td>DateTime</td>
45+
<td>DateTimeEditor</td>
46+
<td>DateTimeEdit</td>
47+
</tr>
48+
<tr>
49+
<td>bool</td>
50+
<td>CheckBoxEditor</td>
51+
<td>CheckBox</td>
52+
</tr>
53+
<tr>
54+
<td>Brush</td>
55+
<td>BrushSelectorEditor</td>
56+
<td>ColorPicker</td>
57+
</tr>
58+
<tr>
59+
<td>Input Mask</td>
60+
<td>MaskEditor</td>
61+
<td>SfMaskedEdit</td>
62+
</tr>
63+
<tr>
64+
<td>TimeSpan</td>
65+
<td>TimeSpanEditor</td>
66+
<td>TimeSpanEdit</td>
67+
</tr>
68+
<tr>
69+
<td>FontFamily</td>
70+
<td>FontComboEditor</td>
71+
<td>ComboBox</td>
72+
</tr>
73+
</tbody>
5374
</table>
5475

5576
{% tabs %}

0 commit comments

Comments
 (0)