MindFusion.UI for WebForms Programmer's Guide

DockLocation Enumeration

See Also
 





Specifies the possible dock destinations.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public enum DockLocation

Visual Basic  Copy Code

Public Enumeration DockLocation

 Members

  Member name Value Description

None

0

Indicates that docking is not possible.

Left

1

Indicates that docking to the left side is allowed.

Top

2

Indicates that docking to the top side is allowed.

Right

4

Indicates that docking to the right side is allowed.

Bottom

8

Indicates that docking to the bottom side is allowed.

Center

16

Indicates that docking to the center is allowed.

All

31

Indicates that docking to all sides and to the center is allowed.

 Remarks

This enumeration is defined as Flag that allows a bitwise combination of its member values.

 See Also