Foxit PDF SDK
|
Inherits Object.
Public Member Functions | |
ShadingColor (ARGB firstcolor, ARGB secondcolor) | |
Constructor, with parameters. More... | |
ShadingColor () | |
Constructor. | |
ShadingColor (const ShadingColor &shading_color) | |
Constructor, with another shading color object. More... | |
bool | operator != (const ShadingColor &shading_color) const |
Not equal operator. More... | |
ShadingColor & | operator= (const ShadingColor &shading_color) |
Assign operator. More... | |
bool | operator== (const ShadingColor &shading_color) const |
Equal operator. More... | |
void | Set (ARGB firstcolor, ARGB secondcolor) |
Set value. More... | |
Public Attributes | |
ARGB | first_color |
First color used for shading. Format: 0xAARRGGBB. | |
ARGB | second_color |
Second color used for shading. Format: 0xAARRGGBB. | |
This class represents shading color which is used for Type 2 (Axial) Shadings.
Constructor, with parameters.
[in] | firstcolor | First color used for shading color. Format: 0xAARRGGBB. |
[in] | secondcolor | Second color used for shading color. Format: 0xAARRGGBB. |
|
inline |
Constructor, with another shading color object.
[in] | shading_color | Another shading color object. |
|
inline |
Not equal operator.
[in] | shading_color | Another shading color object. This function will check if current object is not equal to this one. |
|
inline |
Assign operator.
[in] | shading_color | Another shading color object, whose value would be assigned to current object. |
|
inline |
Equal operator.
[in] | shading_color | Another shading color object. This function will check if current object is equal to this one. |