Customizer Class

Customizer Class

This Package | All Packages

public class Customizer
implements ICustomizer

Provides a base class implementation of the ICustomizer interface.

Methods
Name Description
edit() Edits the component associated with the customizer.
getDesignFilter() Allows your component to support a design time user interface.
getDesignPages() Returns an array of of classes for each design page that this component utilizes.
getVerbs() Retrieves the design-time verbs supported by the component associated with the customizer.
performVerb(CustomizerVerb verb) Performs the action associated with the given verb on the component associated with the customizer.

Methods

Customizer.edit

Syntax
public void edit();
Description

Edits the component associated with the customizer.

See Also
edit

Customizer.getDesignFilter

Syntax
public IDesignFilter getDesignFilter();
Return Value

Returns an IDesignFilter object if your component requires design time message filtering; otherwise, returns null.

Description

Allows your component to support a design time user interface.

See Also
getDesignFilter

Customizer.getDesignPages

Syntax
public Class [] getDesignPages();
Description

Returns an array of of classes for each design page that this component utilizes.

See Also
getDesignPages

Customizer.getVerbs

Syntax
public CustomizerVerb[] getVerbs();
Return Value

Returns an array of verbs supported by the component.

Description

Retrieves the design-time verbs supported by the component associated with the customizer.

See Also
getVerbs

Customizer.performVerb

Syntax
public void performVerb( CustomizerVerb verb );
Parameters
verb
Action to be performed. Use the getVerbs() method to retrieve possible verbs.
Description

Performs the action associated with the given verb on the component associated with the customizer.

See Also
performVerb