Google Apps Script API
    Preparing search index...

    Represents a drawing over a sheet in a spreadsheet.

    interface Drawing {
        getContainerInfo(): ContainerInfo;
        getHeight(): number;
        getOnAction(): string;
        getSheet(): GoogleAppsScript.Spreadsheet.Sheet;
        getWidth(): number;
        getZIndex(): number;
        remove(): void;
        setHeight(height: number): Drawing;
        setOnAction(macroName: string): Drawing;
        setPosition(
            anchorRowPos: number,
            anchorColPos: number,
            offsetX: number,
            offsetY: number,
        ): Drawing;
        setWidth(width: number): Drawing;
        setZIndex(zIndex: number): Drawing;
    }
    Index

    Methods