ANIMATIONINFO (Structures)
Last changed: consultants@russte.com-65.31.114.174

.
Summary
ANIMATIONINFO - Used with SystemParametersInfo for SPI_GETANIMATION or SPI_SETANIMATION

C# Definition:

    /// <summary>
    /// ANIMATIONINFO specifies animation effects associated with user actions.
    /// Used with SystemParametersInfo when SPI_GETANIMATION or SPI_SETANIMATION action is specified.
    /// </summary>
    [StructLayout(LayoutKind.Sequential)]
    public struct ANIMATIONINFO
    {
      public ANIMATIONINFO(System.Int32 iMinAnimate)
      {
        this.cbSize = Marshal.SizeOf(typeof(ANIMATIONINFO));
        this.iMinAnimate = iMinAnimate;
      }

      /// <summary>
      /// Size of ANIMATIONINFO.
      /// </summary>
      public System.Int32 cbSize;

      /// <summary>
      /// If non-zero, minimize/restore animation is enabled, otherwise disabled.
      /// </summary>
      public System.Int32 iMinAnimate;
    }

VB Definition:

Structure ANIMATIONINFO
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation