IFsrmClassifierModuleDefinition.PropertiesAffected Property

 

Sets or retrieves the list of property names that the classifier can affect.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

object[] PropertiesAffected { get; set; }
property array<Object^>^ PropertiesAffected {
    array<Object^>^ get();
    void set(array<Object^>^ value);
}
abstract PropertiesAffected : Object[] with get, set
Property PropertiesAffected As Object()

Property Value

Type: System.Object[]

Returns a Object containing an array of property names that the classifier can affect. Each element of the SAFEARRAY is a variant of type VT_BSTR. Set the bstrVal member of the variant to the property name.

Remarks

This list is optional. Specify a list of properties only if you want to limit the properties that this classifier can affect; otherwise, if the list is empty, the classifier can affect any property in the file.

See Also

IFsrmClassifierModuleDefinition Interface
Microsoft.Storage Namespace

Return to top