Show / Hide Table of Contents

Class VideoProperties

The properties of the Video.

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

Properties

AutoPlay

Whether to enable video autoplay when the page is displayed in present mode. Defaults to false.

Declaration
[JsonProperty("autoPlay")]
public virtual bool? AutoPlay { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

End

The time at which to end playback, measured in seconds from the beginning of the video. If set, the end time should be after the start time. If not set or if you set this to a value that exceeds the video's length, the video will be played until its end.

Declaration
[JsonProperty("end")]
public virtual long? End { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

Mute

Whether to mute the audio during video playback. Defaults to false.

Declaration
[JsonProperty("mute")]
public virtual bool? Mute { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Outline

The outline of the video. The default outline matches the defaults for new videos created in the Slides editor.

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

Start

The time at which to start playback, measured in seconds from the beginning of the video. If set, the start time should be before the end time. If you set this to a value that exceeds the video's length in seconds, the video will be played from the last second. If not set, the video will be played from the beginning.

Declaration
[JsonProperty("start")]
public virtual long? Start { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

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