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

ReplaceNamedRangeContentRequest

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

Replaces the contents of the specified NamedRange or NamedRanges with the given replacement content. Note that an individual NamedRange may consist of multiple discontinuous ranges. In this case, only the content in the first range will be replaced. The other ranges and their content will be deleted. In cases where replacing or deleting any ranges would result in an invalid document structure, a 400 bad request error is returned.

interface ReplaceNamedRangeContentRequest {
namedRangeId?: string;
namedRangeName?: string;
text?: string;
}

§Properties

§
namedRangeId?: string
[src]

The ID of the named range whose content will be replaced. If there is no named range with the given ID a 400 bad request error is returned.

§
namedRangeName?: string
[src]

The name of the NamedRanges whose content will be replaced. If there are multiple named ranges with the given name, then the content of each one will be replaced. If there are no named ranges with the given name, then the request will be a no-op.

§
text?: string
[src]

Replaces the content of the specified named range(s) with the given text.