Intersoft ClientUI Documentation
ConflictAction Property
See Also  Send Feedback
Intersoft.Client.UI.Controls Namespace > ContentTransition Class : ConflictAction Property






Specifies the mode that determines how the control should handle conflict between transitions.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Property ConflictAction As TransitionConflictMode
Visual Basic (Usage)Copy Code
Dim instance As ContentTransition
Dim value As TransitionConflictMode
 
instance.ConflictAction = value
 
value = instance.ConflictAction
C# 
[CategoryAttribute("Common Properties")]
public TransitionConflictMode ConflictAction {get; set;}
Delphi 
public read-write property ConflictAction: TransitionConflictMode; 
JScript 
CategoryAttribute("Common Properties")
public function get,set ConflictAction : TransitionConflictMode
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property TransitionConflictMode get_ConflictAction();
public: __property void set_ConflictAction( 
   TransitionConflictMode value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
property TransitionConflictMode ConflictAction {
   TransitionConflictMode get();
   void set (    TransitionConflictMode value);
}

Remarks

In rare cases, you may run into situations where one or more transitions are overlapping each other. This scenario may occured when there's new content that is assigned before the current transition is completed.

ContentTransition provides built-in feature to resolve conflicting transition. You can set the ConflictAction property to one of the following values:

  • QueueNextTransition
    The conflicting transition will be queued and hence applied when the current transition completes. This is the default value of the ConflictAction property.
     
  • CancelCurrentTransition
    The conflicting transition causes the current transition to be stopped. Consequently, the conflicting transition becomes the current transition which is applied to the content immediately.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.