ShippingMethodManager.GetMethodInfo

Ee785163.c++_on(en-US,CS.10).gifEe785163.vb_off(en-US,CS.10).gif

Use this method to retrieve information about the database attributes of one or more columns in the ShippingConfig table.

Definition

Function GetMethodInfo(columns As Variant) As Variant

Parameters

columns

An Array of strings containing names of the columns. Specify an empty array to return all columns.

Return Values

If this method completes successfully, it returns an ADO Recordset object that contains the information about the wanted columns.

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.

Remarks

This method acts on the loaded shipping method. You must call LoadMethodInstance or CreateMethodInstance to load a shipping method into the ShippingMethodManager object before calling this method.

This method returns an ADO Recordset object containing the data type, defined size, and attributes of the requested columns in the ShippingConfig table.

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

Example

' oSMM is an initialized, loaded Commerce.ShippingMethodManager object
' rsResult is an ADO recordset

Set rsResult = oSMM.GetMethodInfo(Array("shipping_method_name", "description", "enabled"))

See Also

Splitter

Shipping Object

ShippingDiscountAdjust

ShippingManagerCache

ShippingMethodManager Object

ShippingMethodRouter

StepwiseShipping


All rights reserved.