Provides access to the IPropertySetArray Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a propertyset. | |
Count | The propertyset count. | |
Element | The propertyset at the specified position. | |
Insert | Adds a propertyset at the specified position. | |
Remove | Removes the propertyset at the specified position. | |
RemoveAll | Removes all propertysets. |
IPropertySetArray.Add Method
Adds a propertyset.
Public Sub Add ( _
    ByVal pPropertySet As IPropertySet _
)
public void Add (
    IPropertySet pPropertySet
);
IPropertySetArray.Count Property
The propertyset count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IPropertySetArray.Element Property
The propertyset at the specified position.
Public Function get_Element ( _
    ByVal Index As Integer _
) As IPropertySet
public IPropertySet get_Element (
    int Index
);
IPropertySetArray.Insert Method
Adds a propertyset at the specified position.
Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pPropertySet As IPropertySet _
)
public void Insert (
    int Index,
    IPropertySet pPropertySet
);
IPropertySetArray.Remove Method
Removes the propertyset at the specified position.
Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);
IPropertySetArray.RemoveAll Method
Removes all propertysets.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IPropertySetArray
Classes | Description |
---|---|
PropertySetArray | A collection of IPropertySet objects. |