Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EmbeddedObject

import type { EmbeddedObject } from "https://googleapis.deno.dev/v1/docs:v1.ts";

An embedded object in the document.

interface EmbeddedObject {
description?: string;
embeddedDrawingProperties?: EmbeddedDrawingProperties;
embeddedObjectBorder?: EmbeddedObjectBorder;
imageProperties?: ImageProperties;
linkedContentReference?: LinkedContentReference;
marginBottom?: Dimension;
marginLeft?: Dimension;
marginRight?: Dimension;
marginTop?: Dimension;
size?: Size;
title?: string;
}

§Properties

§
description?: string
[src]

The description of the embedded object. The title and description are both combined to display alt text.

§
embeddedDrawingProperties?: EmbeddedDrawingProperties
[src]

The properties of an embedded drawing.

§
embeddedObjectBorder?: EmbeddedObjectBorder
[src]

The border of the embedded object.

§
imageProperties?: ImageProperties
[src]

The properties of an image.

§
linkedContentReference?: LinkedContentReference
[src]

A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.

§
marginBottom?: Dimension
[src]

The bottom margin of the embedded object.

§
marginLeft?: Dimension
[src]

The left margin of the embedded object.

§
marginRight?: Dimension
[src]

The right margin of the embedded object.

§
marginTop?: Dimension
[src]

The top margin of the embedded object.

§
size?: Size
[src]

The visible size of the image after cropping.

§
title?: string
[src]

The title of the embedded object. The title and description are both combined to display alt text.