com.aspose.slides
Class SlideShowTransition

java.lang.Object
  extended by com.aspose.slides.SlideShowTransition

public final class SlideShowTransition
extends java.lang.Object

Represents information about how the specified slide advances during a slide show.


Constructor Summary
protected SlideShowTransition(Slide parentSlide)
           
 
Method Summary
protected  SSSlideInfoAtom createSlideShowTransition()
           
 double getAdvanceTime()
          Returns the amount of time, in seconds, after which the specified slide transition will occur.
 int getEntryEffect()
          Returns the special effect applied to the specified slide transition.
 boolean getSound()
          Determines whether the specified slide has sound during a slide show.
 int getSpeed()
          Returns the speed of a slide transition.
 boolean isAdvanceOnClick()
          Determines whether the specified slide advances when it's clicked during a slide show.
 boolean isAdvanceOnTime()
          Determines whether the specified slide advances automatically after a specified amount of time has elapsed.
 boolean isHidden()
          Determines whether the specified slide is hidden during a slide show.
 boolean isLoopSoundUntilNext()
          Determines whether the sound that's been set for the specified slide transition loops until the next sound starts.
 void setAdvanceOnClick(boolean value)
          Sets whether the specified slide advances when it's clicked during a slide show.
 void setAdvanceOnTime(boolean value)
          Sets whether the specified slide advances automatically after a specified amount of time has elapsed.
 void setAdvanceTime(double value)
          Sets the amount of time, in seconds, after which the specified slide transition will occur.
 void setEntryEffect(int value)
          Sets the special effect applied to the specified slide transition.
 void setHidden(boolean value)
          Sets whether the specified slide is hidden during a slide show.
 void setLoopSoundUntilNext(boolean value)
          Sets whether the sound that's been set for the specified slide transition loops until the next sound starts.
 void setSpeed(int value)
          Sets the speed of a slide transition.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SlideShowTransition

protected SlideShowTransition(Slide parentSlide)
Method Detail

createSlideShowTransition

protected SSSlideInfoAtom createSlideShowTransition()

getEntryEffect

public int getEntryEffect()
Returns the special effect applied to the specified slide transition.

Returns:
The entry effect. See SlideTransitionEffect.

setEntryEffect

public void setEntryEffect(int value)
Sets the special effect applied to the specified slide transition.

Parameters:
value - new entry effect. See SlideTransitionEffect.

getSpeed

public int getSpeed()
Returns the speed of a slide transition.

Returns:
The speed of a slide transition. See SlideTransitionSpeed.

setSpeed

public void setSpeed(int value)
Sets the speed of a slide transition.

Parameters:
value - the new speed of a slide transition. See SlideTransitionSpeed.

getAdvanceTime

public double getAdvanceTime()
Returns the amount of time, in seconds, after which the specified slide transition will occur.

Returns:
The amount of time in seconds.

setAdvanceTime

public void setAdvanceTime(double value)
Sets the amount of time, in seconds, after which the specified slide transition will occur.

Parameters:
value - the new amount of time in seconds.

isAdvanceOnClick

public boolean isAdvanceOnClick()
Determines whether the specified slide advances when it's clicked during a slide show.

Returns:
true if the slide advances when it's clicked during a slide show.

setAdvanceOnClick

public void setAdvanceOnClick(boolean value)
Sets whether the specified slide advances when it's clicked during a slide show.

Parameters:
value - true to advance slide when it's clicked during a slide show.

isAdvanceOnTime

public boolean isAdvanceOnTime()
Determines whether the specified slide advances automatically after a specified amount of time has elapsed.

Returns:
true if the slide advances automatically.

setAdvanceOnTime

public void setAdvanceOnTime(boolean value)
Sets whether the specified slide advances automatically after a specified amount of time has elapsed.

Parameters:
value - true to advance slide automatically.

isHidden

public boolean isHidden()
Determines whether the specified slide is hidden during a slide show.

Returns:
true if the slide is hidden.

setHidden

public void setHidden(boolean value)
Sets whether the specified slide is hidden during a slide show.

Parameters:
value - true to hide the slide.

getSound

public boolean getSound()
Determines whether the specified slide has sound during a slide show.

Returns:
true if the slide has sound.

isLoopSoundUntilNext

public boolean isLoopSoundUntilNext()
Determines whether the sound that's been set for the specified slide transition loops until the next sound starts.

Returns:
true if the slide's sound loops.

setLoopSoundUntilNext

public void setLoopSoundUntilNext(boolean value)
Sets whether the sound that's been set for the specified slide transition loops until the next sound starts.

Parameters:
value - true to loop the slide's sound.