Show / Hide Table of Contents

Class UnmergeTableCellsRequest

Unmerges cells in a Table.

Inheritance
System.Object
UnmergeTableCellsRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class UnmergeTableCellsRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ObjectId

The object ID of the table.

Declaration
[JsonProperty("objectId")]
public virtual string ObjectId { get; set; }
Property Value
Type Description
System.String

TableRange

The table range specifying which cells of the table to unmerge. All merged cells in this range will be unmerged, and cells that are already unmerged will not be affected. If the range has no merged cells, the request will do nothing. If there is text in any of the merged cells, the text will remain in the upper-left ("head") cell of the resulting block of unmerged cells.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top