It is used to define the elmement info of the ribbon panel.

const element = {
elementType: Enum.FR_Ribbon_Element_Type.FR_RIBBON_BUTTON,
name: 'TestDropButton',
title: 'TestDropButton',
pos: -1
};
interface AddElementType {
    elementType: FR_Ribbon_Element_Type;
    name: string;
    pos: number;
    title: string;
}

Properties

The type of the element.

name: string

The name of the element.

pos: number

The position of the element.

title: string

The title of the element.