Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 585 Bytes

File metadata and controls

32 lines (19 loc) · 585 Bytes

document.deleteTaggedSwatchByName()

Availability

Animate 2020.

Usage

document.deleteTaggedSwatchByName(name:string)

Parameters

name:It is a string that indicates the name of the tagged swatch to delete.

Returns

Nothing.

Description

Method;delete tagged swatch with given name.

Example

The following example delete the tagged swatch of name "swatch1"

var document = fl.getDocumentDOM();
document.deleteTaggedSwatchByName("swatch1");

See also

document.deleteTaggedSwatchAtIndex()