IContentListFactory::get_Schema, put_Schema
The Schema property is a ContentListSchema object that contains the schema used by this ContentListFactory object. The Schema property is read/write.
Definition
Get method:
HRESULT IContentListFactory::get_Schema(IContentListSchema**Schema);
Put method:
HRESULT IContentListFactory::put_Schema(IContentListSchema*Schema);
Parameters
Schema
[in] When putting the property, a pointer to the IContentListSchema interface of the ContentListSchema object that contains the new schema for this ContentListFactory object.
[out,retval] When getting the property, a pointer to an address used to return the IContentListSchema interface of the ContentListSchema object that contains the schema for this ContentListFactory object.
Return Values
These methods return an HRESULT indicating whether or not they completed successfully. See the Error Values section for more details.
Error Values
These methods return S_OK (0x00000000) to indicate success and standard COM HRESULT error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object, which can be accessed using the API function GetErrorInfo. In particular, the GetDescription method of the IErrorInfo interface may return a text description of the error.
Remarks
This property is intended to only be set once. However, until any ContentList object is created using the CreateNewContentList method, or until rows are allocated in the ContentListFactory object by setting the Count property, it can be changed.
If this property is read before it is written, an empty ContentListSchema object will be created and returned.