- Code: Select all
ppt.Slides[0].SlideShowTransition.AdvanceOnClick = true;
ppt.Slides[0].SlideShowTransition.AdvanceAfterTime = 100000;
- Code: Select all
public class SlideShowTransition
{
public byte[] WavData { get; set; }
public TransitionSoundMode SoundMode { get; set; }
public bool BuiltInSound { get; set; }
public bool Loop { get; set; }
public bool AdvanceOnClick { get; set; }
public uint AdvanceAfterTime { get; set; }
public TransitionSpeed Speed { get; set; }
public uint Duration { get; set; }
public Transition Value { get; }
public TransitionType Type { get; set; }
public object Option { get; set; }
public override bool Equals(object obj);
}
It seems there's no related property can change, is there anyone know how to solve?