Specifies what type of custom drawing to perform on boxes; the enumeration members can be assigned to the box' CustomDraw property.
SyntaxVB6
Copy Code
|
|---|
Public Enum ECustomDraw |
C++
Copy Code
|
|---|
enum ECustomDraw |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
cdNone |
0 | No custom drawing for the box. |
![]() |
cdAdditional |
1 | Perform the standard drawing and then raise the CustomDraw event. |
![]() |
cdFull |
2 | Do not perform any standard drawing, just raise CustomDraw. |
![]() |
cdShadowOnly |
3 | Raise the CustomDraw event only for drawing the box shadow. |
See Also