AjaxControlToolkit.Animation.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return Animation.Serialize(this);
        }

Usage Example

コード例 #1
0
 // Set an animation (which is a helper for Animation properties in other extenders)
 // param "animation" is the Animation instance
 // param "name" is the name of the property
 // param "value" is the new value
 protected void SetAnimation(ref Animation animation, string name, Animation value)
 {
     animation = value;
     SetPropertyValue(name,
                      animation != null ? animation.ToString() : String.Empty);
 }
All Usage Examples Of AjaxControlToolkit.Animation::ToString