AnnotationProperties¶
Interface AnnotationProperties
interface AnnotationProperties {
anchorPosition?:
| Float32Array<ArrayBufferLike>
| [number, number, number];
connectedNodeId?: number;
content?: string;
contentOffset?: Float32Array<ArrayBufferLike> | [number, number, number];
enabled?: boolean;
name?: string;
trustedSource?: boolean;
}
anchorPosition?:
| Float32Array<ArrayBufferLike>
| [number, number, number];
connectedNodeId?: number;
content?: string;
contentOffset?: Float32Array<ArrayBufferLike> | [number, number, number];
enabled?: boolean;
name?: string;
trustedSource?: boolean;
}
Index
Properties
Optional
anchor Position
anchorPosition?: Float32Array<ArrayBufferLike> | [number, number, number]
The anchor position of the annotation.
Optional
connected Node Id
connectedNodeId?: number
The connected Node ID of the annotation.
Optional
content
content?: string
The content of the annotation.
Optional
content Offset
contentOffset?: Float32Array<ArrayBufferLike> | [number, number, number]
The content offset of the annotation.
Optional
enabled
enabled?: boolean
The enabled state of the annotation.
Optional
name
name?: string
The name of the annotation.
Optional
Readonly
trusted Source
trustedSource?: boolean
Specifies if the annotation comes from a trusted source.
The AnnotationProperties type defines the properties of an annotation.
See
AnnotationAPI