Class ReplaceNamedRangeContentRequest
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.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class ReplaceNamedRangeContentRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NamedRangeId
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.
Declaration
[JsonProperty("namedRangeId")]
public virtual string NamedRangeId { get; set; }
Property Value
Type | Description |
---|---|
string |
NamedRangeName
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.
Declaration
[JsonProperty("namedRangeName")]
public virtual string NamedRangeName { get; set; }
Property Value
Type | Description |
---|---|
string |
TabsCriteria
Optional. The criteria used to specify in which tabs the replacement occurs. When omitted, the replacement applies to all tabs. In a document containing a single tab: - If provided, must match the singular tab's ID.
- If omitted, the replacement applies to the singular tab. In a document containing multiple tabs: - If provided, the replacement applies to the specified tabs. - If omitted, the replacement applies to all tabs.
Declaration
[JsonProperty("tabsCriteria")]
public virtual TabsCriteria TabsCriteria { get; set; }
Property Value
Type | Description |
---|---|
TabsCriteria |
Text
Replaces the content of the specified named range(s) with the given text.
Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type | Description |
---|---|
string |