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






Gets or sets the image to display as the watermark on the SuperPanel.

Syntax

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

Return Value

A reference to an ImageSourceWatermark specifies the image to display as a watermark on the SuperPanel. The default value is null (Nothing in Visual Basic).

Remarks

An ImageSource allows the developer to choose between a user define watermark or one of the predefined images. The WatermarkBounds property specifies the location and size of the Watermark.

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