IFsrmFileScreenBase.BlockedFileGroups Property
Retrieves or sets the names of the file groups that contain the file name patterns used to specify the files that are blocked by this screen.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
IFsrmMutableCollection BlockedFileGroups { get; set; }
property IFsrmMutableCollection^ BlockedFileGroups {
IFsrmMutableCollection^ get();
void set(IFsrmMutableCollection^ value);
}
abstract BlockedFileGroups : IFsrmMutableCollection with get, set
Property BlockedFileGroups As IFsrmMutableCollection
Property Value
Type: Microsoft.Storage.IFsrmMutableCollection
A IFsrmMutableCollection containing a collection of the file group names.
Each item in the collection is a VARIANT of type VT_BSTR. Set the bstrVal member of the variant to the group name.
Remarks
To specify the blocked group names on a new screen, access this property to get an empty collection and then add the group names to the collection.
For an example, see Using Templates to Define File Screens.
See Also
IFsrmFileScreenBase Interface
Microsoft.Storage Namespace
Return to top