Table of Contents

Class ImageSequenceItem

Namespace
VisioForge.Core.Types.X.VideoEffects
Assembly
VisioForge.Core.dll

Represents a single image in an image sequence overlay. Each item has a filename and a duration for how long it should be displayed.

public class ImageSequenceItem

Inheritance

Inherited Members

Constructors

ImageSequenceItem()

Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.ImageSequenceItem class.

public ImageSequenceItem()

ImageSequenceItem(string, TimeSpan)

Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.ImageSequenceItem class.

public ImageSequenceItem(string filename, TimeSpan duration)

Parameters

filename string

The image filename (full path).

duration TimeSpan

The display duration.

Properties

Duration

Gets or sets the duration for which this image should be displayed.

public TimeSpan Duration { get; set; }

Property Value

TimeSpan

Filename

Gets or sets the image filename (full path).

public string Filename { get; set; }

Property Value

string