GraffitiTour

Enumerations #

NameValues
MessagePositionsTop
TopLeft
TopCenter
TopRight
Center
CenterLeft
CenterRight
Bottom
BottomLeft
BottomCenter
BottomRight
 

Constants #

This class exposes no constants.

Events #

DefinitionParametersDescription
EndedNoneRaised when the user has clicked “Done” on the final step of the tour or otherwise left the tour.
MovedNextindex as IntegerRaised when the user progresses to the next step in the tour.
item as GraffitiTourItem
MovedPreviousindex as IntegerRaised when the user has clicked the “Previous” button to step backward in the tour.
item as GraffitiTourItem
StartedNoneRaised when the tour has started or restarted.

Methods #

DefinitionParametersReturn TypeDescription
Additem as GraffitiTourItemNoneAdds a step to the tour.
AddAtindex as IntegerNoneInserts item at index in the tour.
item as GraffitiTourItem
AddMultipleParamArray items() as GraffitiTourItemNoneAdds items in bulk to the tour.
Itemindex as IntegerGraffitiTourItemReturns the item at the specified index.
LastIndexNoneIntegerReturns the index of the last item in the tour.
Removeindex as IntegerNoneRemoves the item at the specified index.
RemoveAllNoneNoneRemoves all tour items.
ResetNoneNoneResets the user’s tour progress back to the beginning.
StartNoneNoneStarts the user’s tour either at the beginning or where they left off.
StartAtindex as IntegerNoneStart the tour at the specified step index.

Properties #

NameTypeDefault ValueDescription
Active (Read Only)BooleanFalseReturns True when the tour is currently in progress.
AllowCloseBooleanTrueDetermines whether the Close button is visible and users are allowed to exit the tour early.
AllowKeyboardControlBooleanTrueAllows use of the keyboard to step through or end the tour when value is True.
ButtonVisibleBooleanTrueWhen False, all buttons will be hidden.
CaptionCloseString“× Close”Caption of the Close button. Raw HTML supported.
CaptionDoneString“Done”Caption of the Done button (replaces the Next button on the last step of the tour). Raw HTML supported.
CaptionNextString“Next”Caption of the Next button. Raw HTML supported.
CaptionPreviousString“Previous”Caption of the Previous button. Raw HTML supported.
CurrentStepInteger0On which step the tour is currently.
IndicatorCloseWebUIControl.IndicatorsWebUIControl.Indicators.DangerBootstrap indicator applied to the Close button.
IndicatorNextWebUIControl.IndicatorsWebUIControl.Indicators.PrimaryBootstrap indicator applied to the Next button.
IndicatorPreviousWebUIControl.IndicatorsWebUIControl.Indicators.SecondaryBootstrap indicator applied to the Previous button.
IsAnimatedBooleanTrueDetermines whether steps through the tour are animated.
OpacityDouble0.75Opacity of the page overlay that is applied while the tour is active. Valid values are between 0.0 and 1.0
OverlayColorColor&cFFFFFFColor overlaid on the active control. Transparency supported.
OverlayNextOnClickBooleanFalseWhen True, the tour will progress the next step in the tour if the user clicks on the background overlay.
PaddingInteger10Padding around the currently focused control for tour steps.

Examples #

This class currently has no examples.

Notes #

This class currently has no notes.