Gets or sets a value that determines whether the dialog window may be moved.

Namespace:  C1.Web.UI.Controls.C1Window
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[C1CategoryAttribute("Category.Behavior")]
[JsonAttribute(true, true, true)]
[DefaultValueAttribute(true)]
[LayoutAttribute(LayoutType.Behavior)]
public bool AllowMove { get; set; }
Visual Basic
<C1CategoryAttribute("Category.Behavior")> _
<JsonAttribute(True, True, True)> _
<DefaultValueAttribute(True)> _
<LayoutAttribute(LayoutType.Behavior)> _
Public Property AllowMove As Boolean
	Get
	Set

Remarks

The default value for AllowMove is True. By default users may move the dialog window by dragging the title across the page. Set AllowMove to False if you want the window to hold the designated position.

See Also