Show / Hide Table of Contents

Class Shape

A PageElement kind representing a generic shape that does not have a more specific classification.

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

Properties

ETag

The ETag of the item.

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

Placeholder

Placeholders are page elements that inherit from corresponding placeholders on layouts and masters. If set, the shape is a placeholder shape and any inherited properties can be resolved by looking at the parent placeholder identified by the Placeholder.parent_object_id field.

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

ShapeProperties

The properties of the shape.

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

ShapeType

The type of the shape.

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

Text

The text content of the shape.

Declaration
[JsonProperty("text")]
public virtual TextContent Text { get; set; }
Property Value
Type Description
TextContent

Implements

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