ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX.Animation Namespace / Manager2.PriorityComparisonDelegate Delegate
The scheduled storyboard.
The new storyboard.
The priority effect.

In This Topic
    Manager2.PriorityComparisonDelegate Delegate
    In This Topic
    A delegate used to resolve scheduling conflicts.
    Syntax
    'Declaration
     
    Public Delegate Function Manager2.PriorityComparisonDelegate( _
       ByVal scheduledStoryboard As Storyboard2, _
       ByVal newStoryboard As Storyboard2, _
       ByVal priorityEffect As PriorityEffect _
    ) As Boolean
    public delegate bool Manager2.PriorityComparisonDelegate( 
       Storyboard2 scheduledStoryboard,
       Storyboard2 newStoryboard,
       PriorityEffect priorityEffect
    )

    Parameters

    scheduledStoryboard
    The scheduled storyboard.
    newStoryboard
    The new storyboard.
    priorityEffect
    The priority effect.

    Return Value

    true if newStoryboard has priority. false if scheduledStoryboard has priority
    See Also