Enum ArrowStyle

  • ArrowStyle defines the start and end forms for rendering linear geometry.

  • Some ArrowStyle values are based on the "ST_LineEndType" simple type from ECMA-376 5th edition.

  • Enum values are accessed by calling the parent class, name, and property, for example, SlidesApp.ArrowStyle.FILL_ARROW.

  • Available ArrowStyle properties include various arrow, circle, square, and diamond shapes, both filled and open, as well as unsupported and none.

ArrowStyle

The kinds of start and end forms with which linear geometry can be rendered.

Some values are based on the "ST_LineEndType" simple type described in section 20.1.10.33 of of "Office Open XML File Formats - Fundamentals and Markup Language Reference", part 1 of ECMA-376 5th edition.

To call an enum, you call its parent class, name, and property. For example, SlidesApp.ArrowStyle.FILL_ARROW.

Properties

PropertyTypeDescription
UNSUPPORTEDEnumAn arrow style that is not supported.
NONEEnumNo arrow.
STEALTH_ARROWEnumArrow with notched back. Corresponds to ECMA-376 ST_LineEndType value 'stealth'.
FILL_ARROWEnumFilled arrow. Corresponds to ECMA-376 ST_LineEndType value 'triangle'.
FILL_CIRCLEEnumFilled circle. Corresponds to ECMA-376 ST_LineEndType value 'oval'.
FILL_SQUAREEnumFilled square.
FILL_DIAMONDEnumFilled diamond. Corresponds to ECMA-376 ST_LineEndType value 'diamond'.
OPEN_ARROWEnumHollow arrow.
OPEN_CIRCLEEnumHollow circle.
OPEN_SQUAREEnumHollow square.
OPEN_DIAMONDEnumHollow diamond.