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 ImageSequenceItemInheritance
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
Properties
Duration
Gets or sets the duration for which this image should be displayed.
public TimeSpan Duration { get; set; }Property Value
Filename
Gets or sets the image filename (full path).
public string Filename { get; set; }