Skip to content

pbDisableInternalDragDropHelper - cWebWidgetContainer

Can disable default drag drop implementation

Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None

Syntax

{ WebProperty=Client }
Property Boolean pbDisableInternalDragDropHelper
Access Type Syntax
Read Access: WebGet pbDisableInternalDragDropHelper to BooleanVariable
Write Access: WebSet pbDisableInternalDragDropHelper to BooleanVariable/Value

Description

By default, the container utilizes a custom internal implementation of the cWebDragDropHelper class to manage moving widgets internally.

Set this to False if you want to disable this behavior and create custom logic for this.

Note that this is not recommended.

About Web Properties

Each web property maintains two values: The regular property value is set during object creation and should not be changed during the lifetime of that object. To access that value, use the standard property Get and Set syntax.

The web property value is the local value stored at each client. This is synchronized to the client's local value whenever a server call is being processed. To access the web property value, use the WebGet and WebSet syntax above instead of the standard Get and Set syntax.