Desktop Functions: Smart Device Functions:
|
Search Results for "ANIMATIONINFO" in [All]user32
static extern bool SystemParametersInfo(SPI uiAction, uint uiParam, ref ANIMATIONINFO pvParam, SPIF fWinIni); When using the SPI_GETANIMATION or SPI_SETANIMATION actions, the uiParam value must be set to (System.UInt32)Marshal.SizeOf(typeof(ANIMATIONINFO)). Structures
/// ANIMATIONINFO specifies animation effects associated with user actions.
/// The uiParam value must be set to (System.UInt32)Marshal.SizeOf(typeof(ANIMATIONINFO)) when using this structure.
public struct ANIMATIONINFO
public ANIMATIONINFO(System.Int32 iMinAnimate)
this.cbSize = (System.UInt32)Marshal.SizeOf(typeof(ANIMATIONINFO));
/// Always must be set to (System.UInt32)Marshal.SizeOf(typeof(ANIMATIONINFO)).
Structure ANIMATIONINFO Enums3: SPI
/// Retrieves the animation effects associated with user actions. The pvParam parameter must point to an ANIMATIONINFO structure
/// that receives the information. Set the cbSize member of this structure and the uiParam parameter to sizeof(ANIMATIONINFO).
/// Sets the animation effects associated with user actions. The pvParam parameter must point to an ANIMATIONINFO structure
/// that contains the new parameters. Set the cbSize member of this structure and the uiParam parameter to sizeof(ANIMATIONINFO). |