HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
ISlide object interface
ISlide object interface provides methods and properties to set effects, and effects duration for slide. You can get access to ISlide interface using ImageToVideo.AddImageFromFileName() method or ISlides.GetSlide(index) method
Property Duration As Long: duration of slide (in miliseconds);
Slide duration works like this: [---------------------------------------- whole slide duration (5 seconds) ---------------------------] = [----- in effect (1 second) ---] + [-------- 3 seconds ------------] + [-- out effect (1 second) ---]. So if you have 5 seconds slide duration and 1 second for in effect and 1 second for out effect then you will see: 1 second with in effect, 3 seconds with the slide with no effects, 1 second with out effect.
Property InEffect As TransitionEffectType: set transition effect type for IN effect (default is None);
Property OutEffect As TransitionEffectType: set transition effect type for OUT effect (default is None);
Property InEffectDuration As Long: sets IN effect duration in milliseconds;
Property OutEffectDuration As Long: sets OUT effect duration in milliseconds;
Property Effect As SlideEffectType: sets visual slide effect (default is None). For example: sepia, grayscale;
Property EffectDuration As Long: sets visual effect diration (in milliseconds);
Property RotationAngle As RotationAngle: sets rotation angle for slide (default is none);
Property VisualEffect As VisualEffectType: sets slide animation effect (default is None). For example: Ease In, Ease Out;