SubMenuStyleCollection.CreateKnownType Method
Assembly: System.Web (in system.web.dll)
protected Object CreateKnownType ( int index )
protected override function CreateKnownType ( index : int ) : Object
Not applicable.
Parameters
- index
The index of the data type to create. This parameter is not used in this implementation of the method; therefore, you should always pass in a null reference (Nothing in Visual Basic).
Return Value
Always returns an empty SubMenuStyle object.The CreateKnownType method is a helper function that is used to create an Object of the data type that corresponds to the specified index. The index is often determined by using the GetKnownTypes method to create an array of supported data types and then searching the array for the desired data type.
The index parameter is not used in this implementation of the method and is ignored. You should always pass in a null reference (Nothing in Visual Basic) for this parameter. This implementation of the method always returns an empty SubMenuStyle object.
Note: |
|---|
| This method is used only by control developers. |
Note: