IGxImage.Flags

Syntax

Flags: GxImageFlags;

Description

The Flags property returns image parameters.

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

Image: IGxImage;

i: Integer;

Begin

Image:=ImageBox1.Image;

i:=Image.Flags;

End Sub Button1OnClick;

After executing the example on clicking the button the "i" variable contains parameters of the image that is stored in the ImageBox1 component.

See also:

IGxImage