SiteConfig.MakeArrayFromSimpleList

Ee784730.c++_on(en-US,CS.10).gifEe784730.vb_off(en-US,CS.10).gif

Use this method to convert the specified SimpleList object into an Array.

Definition

Function MakeArrayFromSimpleList(list As Object) As Variant

Parameters

list

An object reference to the SimpleList object that you want to convert into an Array.

Return Values

If this method completes successfully, it returns a Variant containing the converted Array.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM 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. In particular, the Description property may contain a text description of the error.

All ADO, SQL, and ODBC errors will also be returned by this method.

Remarks

Ee784730.important(en-US,CS.10).gif Important

  • A special group of methods is used with multivalued arrays. These methods are the only approved and recommended way of storing and retrieving multivalued arrays in the Administration database. You must use the following methods with any property that has the structure of a multivalued array:
    • MakeArrayFromSimpleList

    • MakeSimpleListFromArray

    • MakeArrayFromString

    • MakeStringFromArray

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

Example

' vMyVariant is a Variant
' varMySimpleList is a SimpleList object
' oSiteConfig is a Commerce SiteConfig object
vMyVariant = oSiteConfig.MakeArrayFromSimpleList(varMySimpleList)

See Also

SiteConfig Object


All rights reserved.