Show / Hide Table of Contents

Class CreateSlideRequest

Creates a new slide.

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

Properties

ETag

The ETag of the item.

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

InsertionIndex

The optional zero-based index indicating where to insert the slides. If you don't specify an index, the new slide is created at the end.

Declaration
[JsonProperty("insertionIndex")]
public virtual int? InsertionIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ObjectId

A user-supplied object ID. 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

PlaceholderIdMappings

An optional list of object ID mappings from the placeholder(s) on the layout to the placeholder(s) that will be created on the new slide from that specified layout. Can only be used when slide_layout_reference is specified.

Declaration
[JsonProperty("placeholderIdMappings")]
public virtual IList<LayoutPlaceholderIdMapping> PlaceholderIdMappings { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<LayoutPlaceholderIdMapping>

SlideLayoutReference

Layout reference of the slide to be inserted, based on the current master, which is one of the following:

  • The master of the previous slide index. - The master of the first slide, if the insertion_index is zero. - The first master in the presentation, if there are no slides. If the LayoutReference is not found in the current master, a 400 bad request error is returned. If you don't specify a layout reference, then the new slide will use the predefined layout BLANK.
Declaration
[JsonProperty("slideLayoutReference")]
public virtual LayoutReference SlideLayoutReference { get; set; }
Property Value
Type Description
LayoutReference

Implements

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