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






Gets or sets the distance between the edge of the SuperPanel and the start of the client area.

Syntax

Visual Basic (Declaration) 
Public Property ClientMargin As Integer
Visual Basic (Usage)Copy Code
Dim instance As SuperPanel
Dim value As Integer
 
instance.ClientMargin = value
 
value = instance.ClientMargin
C# 
public int ClientMargin {get; set;}
Delphi 
public read-write property ClientMargin: Integer; 
JScript 
public function get,set ClientMargin : int
Managed Extensions for C++ 
public: __property int get_ClientMargin();
public: __property void set_ClientMargin( 
   int value
);
C++/CLI 
public:
property int ClientMargin {
   int get();
   void set (int value);
}

Return Value

A System.Int32 value, this property specifies the distance, in pixels, from the edge of the SuperPanel to the start of the client area. The default value is 0.

Remarks

The client area is the interior of the SuperPanel. ClientMargin specifies the distance from the edge of the SuperPanel to the start of the client area. The border is drawn surrounding the client area.

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