Show / Hide Table of Contents

Class UpdateTableCellStyleRequest

Updates the style of a range of table cells.

Inheritance
object
UpdateTableCellStyleRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class UpdateTableCellStyleRequest : IDirectResponseSchema

Properties

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 tableCellStyle is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example to update the table cell background color, set fields to "backgroundColor". To reset a property to its default value, include its field name in the field mask but leave the field itself unset.

Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type Description
object

TableCellStyle

The style to set on the table cells. When updating borders, if a cell shares a border with an adjacent cell, the corresponding border property of the adjacent cell is updated as well. Borders that are merged and invisible are not updated. Since updating a border shared by adjacent cells in the same request can cause conflicting border updates, border updates are applied in the following order: - border_right - border_left - border_bottom - border_top

Declaration
[JsonProperty("tableCellStyle")]
public virtual TableCellStyle TableCellStyle { get; set; }
Property Value
Type Description
TableCellStyle

TableRange

The table range representing the subset of the table to which the updates are applied.

Declaration
[JsonProperty("tableRange")]
public virtual TableRange TableRange { get; set; }
Property Value
Type Description
TableRange

TableStartLocation

The location where the table starts in the document. When specified, the updates are applied to all the cells in the table.

Declaration
[JsonProperty("tableStartLocation")]
public virtual Location TableStartLocation { get; set; }
Property Value
Type Description
Location

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX