GStateSetBlendMode Method |
Gets the blend mode.
Sets the current blend mode to be used in the transparent imaging model.
Corresponds to the /BM key within the ExtGState's dictionary.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetBlendMode(
GStateBlendMode BM
)
Public Sub SetBlendMode (
BM As GStateBlendMode
)
public:
virtual void SetBlendMode(
[InAttribute] GStateBlendMode BM
) sealed
function SetBlendMode(BM);
Parameters
- BM
- Type: pdftron.PDFGStateBlendMode
- New blending mode type.
Return Value
Type:
the current blend mode to be used in the transparent imaging model.
Corresponds to the /BM key within the ExtGState's dictionary.
Examples
gs.SetBlendMode(GState.BlendMode.e_lighten);
See Also