MindFusion.UI for WebForms Programmer's Guide

EnabledInteraction Enumeration

See Also
 





Specifies the enabled interactions on a Window.

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

 Syntax

C#  Copy Code

public enum EnabledInteraction

Visual Basic  Copy Code

Public Enumeration EnabledInteraction

 Members

  Member name Value Description

None

0

No interactions are allowed.

Drag

1

The window can be dragged.

Resize

2

The window can be resized.

Minimize

4

The window can be minimized.

Maximize

8

The window can be maximized.

Pin

16

The window can be pinned.

Refresh

32

The window can be refreshed.

Close

64

The window can be closed.

All

127

All interactions are allowed.

 Remarks

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

 See Also