Class NamedRange
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.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class NamedRange : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The name of the named range.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
NamedRangeId
The ID of the named range.
Declaration
[JsonProperty("namedRangeId")]
public virtual string NamedRangeId { get; set; }
Property Value
Type | Description |
---|---|
string |
Ranges
The ranges that belong to this named range.
Declaration
[JsonProperty("ranges")]
public virtual IList<Range> Ranges { get; set; }
Property Value
Type | Description |
---|---|
IList<Range> |