Table of Contents

TUIImage.ToNativeImage Method

Overloads

TUIImage.ToNativeImage(Pointer, Double)

Draws the image into a native bitmap.

Syntax

Unit: FlexCel.Core

procedure TUIImage.ToNativeImage(const NativeImageHandle: Pointer; const Scale: Double); overload;

Parameters

<-> Parameter Type Description
const NativeImageHandle Pointer For VCL, this is a Canvas.Handle. For Firemonkey, this is a TCanvas object.
const Scale Double

See also

TUIImage.ToNativeImage(Double, Double, Pointer, Double)

Draws the image into a native bitmap.

Syntax

Unit: FlexCel.Core

procedure TUIImage.ToNativeImage(const x: Double; const y: Double; const NativeImageHandle: Pointer; const Scale: Double); overload; virtual; abstract;

Parameters

<-> Parameter Type Description
const x Double X position where the image will be rendered.
const y Double Y position where the image will be rendered.
const NativeImageHandle Pointer For VCL, this is a Canvas.Handle. For Firemonkey, this is a TCanvas object.
const Scale Double

See also