Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
AnimationBackground Property
See Also 
Leadtools.Codecs Namespace > CodecsGifOptions.CodecsGifSaveOptions Class : AnimationBackground Property



Gets or sets the animation background color used when saving GIF images.

Syntax

Visual Basic (Declaration) 
Public Property AnimationBackground As Color
Visual Basic (Usage)Copy Code
Dim instance As CodecsGifOptions.CodecsGifSaveOptions
Dim value As Color
 
instance.AnimationBackground = value
 
value = instance.AnimationBackground
C# 
public Color AnimationBackground {get; set;}
C++/CLI 
public:
property Color AnimationBackground {
   Color get();
   void set (Color value);
}

Return Value

The animation background color used when saving GIF images.

Example

For an example, refer to CodecsGifOptions.

Remarks

To save GIF images with an animation background, set the value of the UseAnimationBackground to true then set the animation background value in the AnimationBackground property prior of calling the RasterCodecs.Save method.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also