Script API - v1.21.120
    Preparing search index...

    Interface IRegisterExtensionOptionalParameters

    Advertisement

    Optional parameter definition for RegisterEditorExtension function Allows the extension registrar to specify optional textual description and notes which would be visible through the extension manager

    interface IRegisterExtensionOptionalParameters {
        description?: string;
        notes?: string;
        toolGroupId?: string;
    }
    Index

    Properties

    description?: string

    Description of the extension.

    notes?: string

    Additional notes and description of the extension.

    toolGroupId?: string

    An optional custom group identifier that will be used for all Modal Tools created from the registered extension.

    Advertisement