Vcl.ExtCtrls.TImage.Transparent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Transparent: Boolean read FTransparent write SetTransparent default False;

C++

__property bool Transparent = {read=FTransparent, write=SetTransparent, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TImage

Description

Specifies whether the background of the image obscures objects below the image object.

Set Transparent to true to allow objects behind the TImage object to show through the background of the image. Set Transparent to false to make the background of the image opaque. Setting Transparent sets the Transparent property of the Picture.

Note: Transparent has no effect unless the Picture property specifies a TBitmap object.

See Also