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

NamedRange

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

A collection of Ranges with the same named range ID. Named ranges allow developers to associate parts of a document with an arbitrary user-defined label so their contents can be programmatically read or edited later. A document can contain multiple named ranges with the same name, but every named range has a unique ID. A named range is created with a single Range, and content inserted inside a named range generally expands that range. However, certain document changes can cause the range to be split into multiple ranges. Named ranges are not private. All applications and collaborators that have access to the document can see its named ranges.

interface NamedRange {
name?: string;
namedRangeId?: string;
ranges?: Range[];
}

§Properties

§
name?: string
[src]

The name of the named range.

§
namedRangeId?: string
[src]

The ID of the named range.

§
ranges?: Range[]
[src]

The ranges that belong to this named range.