LPaintEffect::LPaintEffect()
LPaintEffect::LPaintEffect(pEfxDlgParm)
LPaintEffect::LPaintEffect(pGradDlgParm)
LPaintEffect::LPaintEffect(pShapeDlgParm)
LPaintEffect::LPaintEffect(pTextDlgParm)
LPaintEffect::LPaintEffect(pTransDlgParm)
Constructs and initializes the different member variables of the LPaintEffect object.
Pointer to a structure of type EFFECTDLGPARAMS that contains the paint effects parameters.
Pointer to a structure of type GRADIENTDLGPARAMS that contains the gradient parameters.
Pointer to a structure of type SHAPEDLGPARAMS that contains the shape parameters.
Pointer to a structure of type TEXTDLGPARAMS that contains the text parameters.
Pointer to a structure of type TRANSITIONDLGPARAMS that contains the transition parameters.
None.
LPaintEffect::LPaintEffect() is a constructor for the LPaintEffect class.
LPaintEffect::LPaintEffect(pGradDlgParm) will initialize the LPaintEffect object data members for the gradient drawing with the passed parameters.
LPaintEffect::LPaintEffect(pShapeDlgParm) will initialize the LPaintEffect object data members for the shape drawing with the passed parameters.
LPaintEffect(pTextDlgParm) will initialize the LPaintEffect object data members for the text drawing with the passed parameters.
LPaintEffect::LPaintEffect(pTransDlgParm) will initialize the LPaintEffect object data members for the transition drawing with the passed parameters.
LPaintEffect::LPaintEffect(pEfxDlgParm) will initialize the LPaintEffect object data members for painting effects with the passed parameters.
Win32, x64.
// This is an example for LPaintEffect::LPaintEffect():
L_INT LPaintEffect__LPaintEffectExample_1()
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEffect;
//...
return SUCCESS;
}
// This is an example for LPaintEffect::LPaintEffect(pGradDlgParm):
L_INT LPaintEffect__LPaintEffectExample_2(GRADIENTDLGPARAMS GradDlgParm)
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEfx(&GradDlgParm);
//...
return SUCCESS;
}
// This is an example for LPaintEffect::LPaintEffect(pShapeDlgParm):
L_INT LPaintEffect__LPaintEffectExample_3(SHAPEDLGPARAMS ShapeDlgParm)
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEfx(&ShapeDlgParm);
//...
return SUCCESS;
}
// This is an example for LPaintEffect(pTextDlgParm):
L_INT LPaintEffect__LPaintEffectExample_4(TEXTDLGPARAMS TextDlgParm)
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEfx(&TextDlgParm);
//...
return SUCCESS;
}
// This is an example for LPaintEffect(pTransDlgParm):
L_INT LPaintEffect__LPaintEffectExample_5(TRANSITIONDLGPARAMS TransDlgParm)
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEfx(&TransDlgParm);
//...
return SUCCESS;
}
// This is an example for LPaintEffect(pEfxDlgParm):
L_INT LPaintEffect__LPaintEffectExample_6(EFFECTDLGPARAMS EfxDlgParm)
{
// this will call the default constructor and destructor when it is out of scope
LPaintEffect LeadPaintEfx(&EfxDlgParm);
//...
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document