This article applies to:
E-Prime 3.0
E-Prime 2.0
This item was introduced in E-Prime 2.0 (2.0.10.183).
Detail
The Slide.ActiveSlideState property assists with accessing the active SlideState on a Slide. This property is equivalent to obtaining the active State using the Slide.States collection and the Slide.ActiveState name.
' The following are equivalent statements. The ActiveSlideState property
' introduced in E-Prime provides a shortcut to accessing the values
Dim theSlideText As SlideText
' E-Prime 1.x
Set theSlideText = CSlideText(Slide1.States(Slide1.ActiveState).Objects("StimText"))
Debug.Print theSlideText.Text
' E-Prime 2.0 and 3.0
Set theSlideText = CSlideText(Slide1.ActiveSlideState.Objects("StimText"))
Debug.Print theSlideText.Text
For more information view the E-Prime Command Reference for specifics involving E-Basic (https://pstnet.com/ecr).
Comments
0 comments
Please sign in to leave a comment.