Coordinators Property

The Coordinators property specifies a list of coordinators for this folder.

Property Coordinators As Variant [C++]
Get method:
HRESULT get_Coordinators(VARIANT*pCoordinators);
Put method:
HRESULT put_Coordinators(VARIANTvarCoordinators);

[Visual Basic]

Parameters

None.

Return Values

This property returns a Variant that contains an array of Variants. Each Variant in the array contains a String that contains a coordinator. For this property to be set, each array element must contain one user name in the form: "DOMAIN\username".

Error Values

If an error is raised, Err.Number is set to one of the values documented on the Error Messages page.

[C++]

Parameters

Get method:

  • pCoordinators
    [out, retval] Pointer to a VARIANT that contains an array of VARIANTs. Each VARIANT in the array contains a BSTR that contains a coordinator.

Put method:

  • varCoordinators
    [in] VARIANT that contains an array of VARIANTs. Each VARIANT in the array contains a BSTR that contains a coordinator. For this property to be set, each array element must contain one user name in the form: "DOMAIN\username".
Return Values

For a list of error messages returned by SharePoint Portal Server, see Error Messages.

Remarks

The Coordinators property is only applicable to enhanced folders. It returns an empty list when called for a standard folder.

Example

To see this property in a fuller context, see Document Management Object Model Sample.