Resource Base
Table of contents

Note

The Note interface defines a structure to store extra information in a DrawingItem. A DrawingItem can have one or multiple Notes.

interface Note {
  /** The name of the note. */
  name: string;
  /** The content of the note, can be of any type. */
  content: any;
}

name

The name of the note.

content

The content of the note, can be of any type.

This page is compatible for:

Is this page helpful?

YesYes NoNo