KaxTabControlMultiPageID Property |
Gets or sets the ID of the
KaxMultiPage control that
will be controlled by the current
KaxTabControl control.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax[TypeConverterAttribute("Kettic.AspNet.Controls.Design.MultiPageIDTypeConverter, Kettic.AspNet.Controls, Version=2014.04.1129.0, Culture=neutral, PublicKeyToken=b0aa88e29aff773e")]
public string MultiPageID { get; set; }
<TypeConverterAttribute("Kettic.AspNet.Controls.Design.MultiPageIDTypeConverter, Kettic.AspNet.Controls, Version=2014.04.1129.0, Culture=neutral, PublicKeyToken=b0aa88e29aff773e")>
Public Property MultiPageID As String
Get
Set
public:
[TypeConverterAttribute(L"Kettic.AspNet.Controls.Design.MultiPageIDTypeConverter, Kettic.AspNet.Controls, Version=2014.04.1129.0, Culture=neutral, PublicKeyToken=b0aa88e29aff773e")]
property String^ MultiPageID {
String^ get ();
void set (String^ value);
}
[<TypeConverterAttribute("Kettic.AspNet.Controls.Design.MultiPageIDTypeConverter, Kettic.AspNet.Controls, Version=2014.04.1129.0, Culture=neutral, PublicKeyToken=b0aa88e29aff773e")>]
member MultiPageID : string with get, set
Property Value
Type:
String
The
ID of the associated KaxMultiPage. The default value is empty string.
Remarks
You should use different value depending on the following conditions:
Use the ID property of the KaxMuitiPage control if the KaxMultiPage control is in
the same INamingContainer (user control, page, content page, master page) as the current KaxTabControl control.
Use the UniqueID property of the KaxMuitiPage control if the KaxMultiPage
control is in a different INamingContainer (user control, page, content page, master page) than
the current KaxTabControl control.
Examples
The following example demonstrates how to associate a
KaxMultiPage
control with a
KaxTabControl control through the
MultiPageID property.
<kettic:KaxTabControl id="KaxTabControl1" runat="server"
MultiPageID="KaxMultiPage1">
<Tabs>
<kettic:KaxTab Text="Personal Details"></kettic:KaxTab>
<kettic:KaxTab Text="Education"></kettic:KaxTab>
<kettic:KaxTab Text="Computing Skills"></kettic:KaxTab>
</Tabs>
</kettic:KaxTabControl>
<kettic:KaxMultiPage id="KaxMultiPage1"
runat="server">
.....
</kettic:KaxMultiPage>
See Also