ICreate.Controls.Bars Send comments on this topic.
Watermark Property
See Also 
ICreate.Controls.Bars Namespace > CollapsingGroupPanel Class : Watermark Property






Gets or sets the Image drawn as a watermark on the CollapsingGroupPanel.

Syntax

Visual Basic (Declaration) 
Public Property Watermark As Image
Visual Basic (Usage)Copy Code
Dim instance As CollapsingGroupPanel
Dim value As Image
 
instance.Watermark = value
 
value = instance.Watermark
C# 
public Image Watermark {get; set;}
Delphi 
public read-write property Watermark: Image; 
JScript 
public function get,set Watermark : Image
Managed Extensions for C++ 
public: __property Image get_Watermark();
public: __property void set_Watermark( 
   Image value
);
C++/CLI 
public:
property Image Watermark {
   Image get();
   void set (Image value);
}

Return Value

A reference to an Image, this property specifies the watermark drawn on the CollapsingGroupPanel. The default value is null (Nothing in Visual Basic).

Remarks

The WatermarkBounds property specifies the location and size of the Watermark. The WatermarkOpacity determines the opacity of the Watermark when the CollapsingGroupPanel is cold. The WatermarkHotOpacity determines the opacity of the Watermark when the CollapsingGroupPanel is hot. The CollapsingGroupPanel is cold when the cursor is not over it nor do any of its child controls have the input focus. The CollapsingGroupPanel is hot when the cursor is over it or one of its child controls has the input focus.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also