DataViewBrowseObjectProvider.CreateBrowseObject(Int32, Object) Method
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.
Retrieves a browse object for a data view node, given the specified node's item ID.
public:
virtual System::Object ^ CreateBrowseObject(int itemId, System::Object ^ autoBrowseObj);
public virtual object CreateBrowseObject (int itemId, object autoBrowseObj);
abstract member CreateBrowseObject : int * obj -> obj
override this.CreateBrowseObject : int * obj -> obj
Public Overridable Function CreateBrowseObject (itemId As Integer, autoBrowseObj As Object) As Object
Parameters
- itemId
- Int32
An item ID specifying a node for which to create a custom browse object.
- autoBrowseObj
- Object
A browse object automatically generated with information in the data view support XML, or null if the XML indicates that no such browse object should be generated. This allows an implementation of this method to specify most settings in XML and then provide only minor modification to the set of properties, rather than necessitating building the object from the beginning.
Returns
An object representing the browse object for the specified node.