The splitter's priority level for the form.

Usage

Set_Property(OLECtrlEntID, "OLE.PriorityLevel", Value)

Values

Value can be any positive or negative whole number:

Default: 0

Remarks

The PriorityLevel property gives you control over how one SRP Splitter Control reacts to other SRP Splitter Controls on the same form. By default, an SRP Splitter Control will not allow the user to drag beyond other SRP Splitter Controls of similar orientation. However, in the event that you want one SRP Splitter Control to drag beyond another SRP Splitter Control, you can use this property to increase it's priority.

The logic is simple. An SRP Splitter Control, when considering it's drag limits, will ignore all other SRP Splitter Controls with lower priority levels. By default, all SRP Splitter Controls have the same zero level priority.

Example

// Make this splitter the highest priority 
Set_Property(@Window:".OLE_SPLITTER", "OLE.PriorityLevel", 99)
  • No labels