A stamp in the repository stamp catalog. The stamp image is retrieved separately as a PNG.

interface IStamp {
    customData?: string;
    id?: number;
    imageHeight?: number;
    imageWidth?: number;
    isPublic?: boolean;
    name?: string;
    owner?: string;
}

Implemented by

Properties

customData?: string

Optional application-defined custom data stored with the stamp.

id?: number

The ID of the stamp.

imageHeight?: number

The height of the stamp image in pixels.

imageWidth?: number

The width of the stamp image in pixels.

isPublic?: boolean

A boolean indicating whether the stamp is public (shared) rather than personal.

name?: string

The display name of the stamp.

owner?: string

The security identifier (SID) of the stamp's owner.