Show / Hide Table of Contents

Class DeleteTableColumnRequest

Deletes a column from a table.

Inheritance
System.Object
DeleteTableColumnRequest
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 DeleteTableColumnRequest : IDirectResponseSchema

Properties

CellLocation

The reference table cell location from which a column will be deleted. The column this cell spans will be deleted. If this is a merged cell, multiple columns will be deleted. If no columns remain in the table after this deletion, the whole table is deleted.

Declaration
[JsonProperty("cellLocation")]
public virtual TableCellLocation CellLocation { get; set; }
Property Value
Type Description
TableCellLocation

ETag

The ETag of the item.

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

TableObjectId

The table to delete columns from.

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

Implements

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