MenuItem.DataPath Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the path to the data that is bound to the menu item.
public:
property System::String ^ DataPath { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string DataPath { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataPath : string
Public ReadOnly Property DataPath As String
Property Value
The path to the data that is bound to the node. This value comes from the hierarchical data source control to which the Menu control is bound. The default value is an empty string ("").
- Attributes
Remarks
The DataPath property value is commonly used when calling the IHierarchicalDataSource.GetHierarchicalView method to provide the path to the data that is bound to the current menu item. This method then returns a System.Web.UI.HierarchicalDataSourceView object that contains the data at the specified path.