Table of Contents

TUIImage Implicit Conversion Operator

Overloads

Implicit conversion from Image to TUIImage

Creates a UIImage from a given System.Drawing.Image. Important: When you do an implicit conversion, the TUIImage will take ownership of the image, and the original System.Drawing.Image will be disposed when you dispose this class.

Syntax

Namespace: FlexCel.Core

public static TUIImage op_Implicit(Image img)

Parameters

<-> Parameter Type Description
img Image

See also

Implicit conversion from TUIImage to Image

Converts a TUIImage into a System.Drawing.Image. Note that after converting it, this class won't hold a reference to the image anymore, and you have to dispose the converted System.DrawingImage instead.

Syntax

Namespace: FlexCel.Core

public static Image op_Implicit(TUIImage img)

Parameters

<-> Parameter Type Description
img TUIImage

See also