Class VideoProperties
The properties of the Video.
Implements
Inherited Members
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 |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
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 |
---|---|
long? |
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 |
---|---|
bool? |
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 |
---|---|
long? |