ShippingMethodManager.GetComponentConfig
Use this method to retrieve the Configuration dictionary for the shipping component to implement the current shipping method. The shipping method must be loaded using LoadMethodInstance before calling GetComponentConfig.
Definition
Function GetComponentConfig() As Variant
Parameters
None.
Return Values
If this method completes successfully, it returns a Variant that contains the Configuration dictionary for the current shipping method.
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.
Example
' oSMM is an initialized, loaded Commerce.ShippingMethodManager object
Set dConfig = oSMM.GetComponentConfig