'Declaration Public Overloads Property Item( _ ByVal type As String _ ) As TemplateImage
'Usage Dim instance As TemplateImageCollection Dim type As String Dim value As TemplateImage instance.Item(type) = value value = instance.Item(type)
public TemplateImage Item( string type ) {get; set;}
public: __property TemplateImage* get_Item( string* type ); public: __property void set_Item( string* type, TemplateImage* value );
public: property TemplateImage^ Item { TemplateImage^ get(String^ type); void set (String^ type, TemplateImage^ value); }
Parameters
- type
- The Type string of the TemplateImage in the collection to get or set. If multiple TemplateImages in the collection have the same value for the Type property, this method will return the matching item with the lowest numeric index.