Skip to content

Commit 2a7d195

Browse files
committed
Update loading-tabs-from-xml.md (#734)
1 parent 7acb4d6 commit 2a7d195

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

controls/tabstrip/tabs/loading-tabs-from-xml.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,19 @@ position: 7
1212

1313
You can easily load the tabs of a tab strip from an XML source, as long as the source conforms to the following structure:
1414

15-
1. The top level consists of a single node, called <TabStrip>. This node can include attributes for the **RadTabStrip** properties:
15+
1. The top level consists of a single node, called `TabStrip`. This node can include attributes for the RadTabStrip properties:
1616

17-
````XML
18-
<?xml version="1.0" encoding="utf-16"?>
17+
````ASP.NET
1918
<TabStrip
2019
SelectedIndex="0"
2120
MultiPageID="RadMultiPage1"
2221
Skin="Vista" >
23-
24-
...
2522
</TabStrip>
2623
````
2724

28-
1. Immediately below the <TabStrip> node is a set of <Tab> nodes, where each node represents a root-level tab. The attributes of the <Tab> node correspond to the properties and custom attributes of the tab. Any child tabs are nested within the <Tab> node:
25+
2. Immediately below the `TabStrip` node is a set of `Tab` nodes, where each node represents a root-level tab. The attributes of the `Tab` node correspond to the properties and custom attributes of the tab. Any child tabs are nested within the `Tab` node:
2926

30-
````XML
27+
````ASP.NET
3128
<Tab Selected="True" ScrollChildren="True" Text="Tab 1">
3229
<Tab PageViewID="RadPageView1" Text="Child 1" />
3330
<Tab IsBreak="True" PageViewID="RadPageView2" Text="Child 2" />
@@ -85,3 +82,5 @@ RadTabStrip1.LoadXml(sb.ToString())
8582
# See Also
8683

8784
* [Overview]({%slug tabstrip/tabs/overview%})
85+
86+
*

0 commit comments

Comments
 (0)