LEADTOOLS WPF and Silverlight (Leadtools.Windows.Controls assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
Transition Property
See Also 
Leadtools.Windows.Controls Namespace > ImageBox Class : Transition Property



Gets or sets the Leadtools.Windows.Media.Transitions.TransitionBase that specifies the type of transition or animation to be applied on this control.

Syntax

Visual Basic (Declaration) 
<CLSCompliantAttribute(False)>
Public Property Transition As TransitionBase
Visual Basic (Usage)Copy Code
Dim instance As ImageBox
Dim value As TransitionBase
 
instance.Transition = value
 
value = instance.Transition
C# 
[CLSCompliantAttribute(false)]
public TransitionBase Transition {get; set;}
C++/CLI 
[CLSCompliantAttribute(false)]
public:
property TransitionBase^ Transition {
   TransitionBase^ get();
   void set (    TransitionBase^ value);
}

Property Value

The Leadtools.Windows.Media.Transitions.TransitionBase that describes the type of transition or animation to be applied to this control. Default value is null (Nothing in Visual Basic).

Example

Remarks

You can derive your own class from Leadtools.Windows.Media.Transitions.TransitionBase, and then set this property to an instance of that class to perform your own transitions or animations

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also