Boolean CueListView:IsLastCueRowSelected()

Returns a boolean.

This function will return True if the last cue is selected in the cue list, otherwise will return False. Useful when iterating through the cue list.

Example.

CueListView:DispatchAction("Select First Cue Row")
cueListFinished = false
while cueListFinished == false do
    -- Insert code here to do what you want with the cue.
    -- Continue to next cue, or are we done.
    if CueListView:IsLastCueRowSelected() == true then
        cueListFinished = true
    else
        CueListView:DispatchAction("Select Next Cue Row")
    end
end

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.