Google Apps Script API
    Preparing search index...

    An object that supports all Google Font Icons (https://fonts.google.com/icons).

    Available for Google Workspace add-ons and Google Chat apps.

    const materialIcon = CardService.newMaterialIcon() .setName('search') .setFill(true) .setWeight(400) .setGrade(0);

    interface MaterialIcon {
        setFill(fill: boolean): MaterialIcon;
        setGrade(grade: number): MaterialIcon;
        setName(name: string): MaterialIcon;
        setWeight(weight: number): MaterialIcon;
    }
    Index

    Methods