Click or drag to resize
KaxMenuItem Constructor
Initializes a new instance of the KaxMenuItem class.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public KaxMenuItem()
Remarks
Use this constructor to create and initialize a new instance of the KaxMenuItem class using default values.
Examples
The following example demonstrates how to add items to KaxMenu controls.
[New Example]
KaxMenuItem item = new KaxMenuItem();
item.Text = "News";
item.NavigateUrl = "~/News.aspx";

KaxMenu1.Items.Add(item);
[New Example]
Dim item As New KaxMenuItem()
item.Text = "News"
item.NavigateUrl = "~/News.aspx"

KaxMenu1.Items.Add(item)
See Also