Google Apps Script API
    Preparing search index...

    Builder for CellImage. This builder creates the image value needed to add an image to a cell.

    interface CellImageBuilder {
        valueType: IMAGE;
        build(): CellImage;
        getAltTextDescription(): string;
        getAltTextTitle(): string;
        getContentUrl(): string;
        getUrl(): string;
        setAltTextDescription(description: string): CellImageBuilder;
        setAltTextTitle(title: string): CellImageBuilder;
        setSourceUrl(url: string): CellImageBuilder;
        toBuilder(): CellImageBuilder;
    }
    Index

    Properties

    valueType: IMAGE

    Methods