Gets or sets the width of the Web server control.


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Property Width As Unit
C#
public override Unit Width { get; set; }
C++
public override property Unit Width override  {
    Unit get();
    void set(Unit value);
}
J#
/** property */
public Unit get_Width();

/** property */
public void set_Width(Unit value);
JScript
public function get Width() : Unit

public function set Width(value : Unit);

Property Value

A Unit that represents the width of the control. The default is Empty.

Exceptions

Exception TypeCondition
ArgumentExceptionThe width of the Web server control was set to a negative value.

See Also