RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Messages.TWMPaint Record

TWMPaint represents a Windows Paint message.

Pascal
TWMPaint = packed record
  Msg: Cardinal;
  DC: HDC;
  Unused: Longint;
  Result: Longint;
end;
C++
struct TWMPaint {
  unsigned Msg;
  HDC DC;
  Longint Unused;
  Longint Result;
};

TWMPaint is the data structure used for all Windows Paint messages. The Msg field is the Windows message code. The DC field specifies handle to the device context that should be used for painting. This value should be assigned as the Handle property of the canvas of the object that needs painting. If DC is null, a valid device context must be obtained by calling the Windows API BeginPaint. The Unused field is not used. The Result field holds the value returned by the application processing the message. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!