IPropertySetArray Interface

Provides access to the IPropertySetArray Interface.

Members

Name Description
Method Add Adds a propertyset.
Read-only property Count The propertyset count.
Read-only property Element The propertyset at the specified position.
Method Insert Adds a propertyset at the specified position.
Method Remove Removes the propertyset at the specified position.
Method 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.