21 |
How do I specify that an object should be moved not resized
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.ObjectsLT = "Command1" oSplitBar.ObjectsRB = "Command1" |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.BorderWidth = 0 oSplitBar.BorderHeight = 0 oSplitBar.SplitBackColor = 0x0 |
19 |
How can I change the shape of the cursor
|
18 |
How can I display a tooltip when cursor hovers the split bar (pictures)
|
17 |
How can I display a tooltip when cursor hovers the split bar (images)
|
16 |
Is it possible to move the associated objects once the user drags the split bar, not just when it ends
|
15 |
How do I know what events your control supports
/* with (this.EXSPLITBARACTIVEXCONTROL1.nativeObject) Event = class::nativeObject_Event endwith */ // Notifies the application once the control fires an event. function nativeObject_Event(EventID) oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject ? Str(oSplitBar.EventParam(-2)) return local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject |
14 |
Is it possible to get notified once the user moves the split bar
/* with (this.EXSPLITBARACTIVEXCONTROL1.nativeObject) Drag = class::nativeObject_Drag endwith */ // Notifies that the user drags the split bar. function nativeObject_Drag(Position) oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject ? "New Position" ? Str(Position) return local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject |
13 |
How do I get notified once the user drop the split bar to a new position
/* with (this.EXSPLITBARACTIVEXCONTROL1.nativeObject) DragEnd = class::nativeObject_DragEnd endwith */ // Occurs once the user ends dragging the split bar. function nativeObject_DragEnd(Position,Cancel) oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject ? "New Position" ? Str(Position) return local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject |
12 |
How do I programmatically move the split bar, to the right/bottom most position
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.ObjectsLT = "Command1" oSplitBar.ObjectsRB = "Command2" oSplitBar.MoveTo(oSplitBar.Max) |
11 |
How do I programmatically move the split bar, to the left/top most position
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.ObjectsLT = "Command1" oSplitBar.ObjectsRB = "Command2" oSplitBar.MoveTo(oSplitBar.Min) |
10 |
How do I programmatically move the split bar
|
9 |
I've noticed that the objects are hidden, when the split bar is closed to the limit. Is it possible to prevent that
|
8 |
How can I specify the limit to move the splitbar (hard coded value)
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.LimitLT = "32D" oSplitBar.LimitRB = "32D" |
7 |
How can I specify the limit to move the splitbar (percent)
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.LimitLT = "50%" oSplitBar.LimitRB = "50%" |
6 |
How do I change the split bar's visual appearance using your EBN files (BASE64)
|
5 |
How do I change the split bar's visual appearance using your EBN files (file)
|
4 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method runtime)
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.AddObjectLT("Command1") oSplitBar.AddObjectRB("Command2") oSplitBar.AddObjectRB("SplitBar2") oSplitBar.AddObjectRB("Command3") |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
local oSplitBar oSplitBar = form.EXSPLITBARACTIVEXCONTROL1.nativeObject oSplitBar.ObjectsLT = "Command1" oSplitBar.ObjectsRB = "Command2,SplitBar2,Command3" oSplitBar.AddObjectLT("Command1") oSplitBar.AddObjectRB("Command2") oSplitBar.AddObjectRB("SplitBar2") oSplitBar.AddObjectRB("Command3") |
2 |
How do I change the split bar's color
|
1 |
How do I change the control's background color
|