Show / Hide Table of Contents

Class LayoutPlaceholderIdMapping

The user-specified ID mapping for a placeholder that will be created on a slide from a specified layout.

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

Properties

ETag

The ETag of the item.

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

LayoutPlaceholder

The placeholder on a layout that will be applied to a slide. Only type and index are needed. For example, a predefined TITLE_AND_BODY layout may usually have a TITLE placeholder with index 0 and a BODY placeholder with index 0.

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

LayoutPlaceholderObjectId

The object ID of the placeholder on a layout that will be applied to a slide.

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

ObjectId

A user-supplied object ID for the placeholder identified above that to be created onto a slide. If you specify an ID, it must be unique among all pages and page elements in the presentation. The ID must start with an alphanumeric character or an underscore (matches regex [a-zA-Z0-9_]); remaining characters may include those as well as a hyphen or colon (matches regex [a-zA-Z0-9_-:]). The length of the ID must not be less than 5 or greater than 50. If you don't specify an ID, a unique one is generated.

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

Implements

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