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
Id | string? | Gets or sets an id string applied for the "id" attribute of the split container element.
88
-
Style | string? | Gets or sets a CSS style string applied for the "style" attribute of the split container element.
89
-
Class | string? | Gets or sets a CSS class string applied for the "class" attribute of the split container element.
90
-
FirstPane | RenderFragment | The left or top pane in the SplitContainer.
91
-
SecondPane | RenderFragment | The right or bottom pane in the SplitContainer.
92
-
Orientation | SplitterOrientation | Determines if the spliter is vertical or horizontal. The default value is `SplitterOrientation.Vertical`.
93
-
FirstPaneSize | int? | Determines pixel distance of the splitter from the left or top edge.
94
-
FirstPaneMinSize | int? | Determines the minimum distance of pixels of the splitter from the left or the top edge of first pane.
95
-
SecondPaneSize | int? | Determines pixel distance of the splitter from the right or bottom edge.
96
-
SecondPaneMinSize | int? | Determines the minimum distance of pixels of the splitter from the right or the bottom edge of second pane.
97
-
FirstPaneSizeChanged | EventCallback<int> | A callback that will be invoked when the size of the first pane is changed.
98
-
SecondPaneSizeChanged | EventCallback<int> | A callback that will be invoked when the size of the second pane is changed.
87
+
TSize | `Type` | The type of the size value of the panes. It can be `int`, `double`, etc. This is the type parameter for the `SplitContainer` component. You don't have to specify this type parameter explicitly as long as it can be inferred from the other parameters.
88
+
Id | `string?` | Gets or sets an id string applied for the "id" attribute of the split container element.
89
+
Style | `string?` | Gets or sets a CSS style string applied for the "style" attribute of the split container element.
90
+
Class | `string?` | Gets or sets a CSS class string applied for the "class" attribute of the split container element.
91
+
FirstPane | `RenderFragment` | The left or top pane in the SplitContainer.
92
+
SecondPane | `RenderFragment` | The right or bottom pane in the SplitContainer.
93
+
Orientation | `SplitterOrientation` | Determines if the spliter is vertical or horizontal. The default value is `SplitterOrientation.Vertical`.
94
+
UnitOfPaneSize | `UnitOfPaneSize` | Determines the unit of the pane size whether it is `Pixel` or `Percent`. The default value is `UnitOfPaneSize.Pixel`.
95
+
FirstPaneSize | `TSize?` | Determines distance of the splitter from the left or top edge.
96
+
FirstPaneMinSize | `TSize?` | Determines the minimum distance of the splitter from the left or the top edge of first pane.
97
+
SecondPaneSize | `TSize?` | Determines distance of the splitter from the right or bottom edge.
98
+
SecondPaneMinSize | `TSize?` | Determines the minimum distance of the splitter from the right or the bottom edge of second pane.
99
+
FirstPaneSizeChanged | `EventCallback<TSize>` | A callback that will be invoked when the size of the first pane is changed.
100
+
SecondPaneSizeChanged | `EventCallback<TSize>` | A callback that will be invoked when the size of the second pane is changed.
99
101
100
102
> **Warning**
101
103
> You can specify the pane size to only either the `FirstPaneSize` or the `SecondPaneSize` parameter. If you specify both the `FirstPaneSize` or the `SecondPaneSize` parameters, then the splitter won't work.
0 commit comments