ListManager.GetListProperty

Ee784630.c++_on(en-US,CS.10).gifEe784630.vb_off(en-US,CS.10).gif

Use this method to retrieve a property of a list.

Definition

Function GetListProperty(listID As Variant,listPropertyName As String) As Variant

Parameters

listID

A Variant that contains the ID or name of the list.

listPropertyName

A String that contains the property name (column of the lm_master table).

Return Values

If this method completes successfully, it returns a Variant containing the value of the property.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to either standard or custom COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors.

The following table shows the custom COM errors that this method can return.

Constant Value Description
E_LM_LIST_NOT_FOUND &H8C400006 The specified list does not exist.
E_LM_SQLERROR &H8C400003 Error while executing SQL/ADO operation.
OLE_E_BLANK &H80040007 The ListManager object has not been properly initialized.

Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

Remarks

For information about the available list properties, see ListManager.GetLists.

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

Example

' vSource is a Variant
vSource = _
 oListManager.GetListProperty("{454799A2-312B-4F5F-90A0-F514FBA0EC5A}", _
 "list_source")

See Also

ListManager Object


All rights reserved.