Class UpdateDocumentStyleRequest
Updates the DocumentStyle.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class UpdateDocumentStyleRequest : IDirectResponseSchema
Properties
DocumentStyle
The styles to set on the document. Certain document style changes may cause other changes in order to mirror the behavior of the Docs editor. See the documentation of DocumentStyle for more information.
Declaration
[JsonProperty("documentStyle")]
public virtual DocumentStyle DocumentStyle { get; set; }
Property Value
Type | Description |
---|---|
DocumentStyle |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Fields
The fields that should be updated. At least one field must be specified. The root document_style
is
implied and should not be specified. A single "*"
can be used as short-hand for listing every field. For
example to update the background, set fields
to "background"
.
Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type | Description |
---|---|
object |
TabId
The tab that contains the style to update. When omitted, the request applies to the first tab. In a document containing a single tab: - If provided, must match the singular tab's ID. - If omitted, the request applies to the singular tab. In a document containing multiple tabs: - If provided, the request applies to the specified tab. - If not provided, the request applies to the first tab in the document.
Declaration
[JsonProperty("tabId")]
public virtual string TabId { get; set; }
Property Value
Type | Description |
---|---|
string |