CatalogManager.RenameDefinition

Ee825096.c++_on(en-US,CS.10).gifEe825096.vb_off(en-US,CS.10).gif

Use this method to rename a definition.

Definition

Sub RenameDefinition(strOldName As String,strNewName As String)

Parameters

strOldName

A String that contains the existing name of the definition.

strNewName

A String that contains the wanted name of the definition.

Return Values

None.

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_CAT_DEFINITION_DOESNT_EXIST &H8898000B The specified old definition name did not exist.
E_CAT_DEFINITION_EXISTS &H8898000A A definition with the specified new name already existed.

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 affects every product and category using the definition.

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

Example

myCatalogManager.RenameDefinition "T-Shirts", "Tee-Shirts"

See Also

CatalogManager Object

CatalogManager.RenameProperty


All rights reserved.