21 |
How do I specify that an object should be moved not resized
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.ObjectsLT = "Command1"; SplitBar1.ObjectsRB = "Command1"; } </SCRIPT> </BODY> |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.BorderWidth = 0; SplitBar1.BorderHeight = 0; SplitBar1.SplitBackColor = 0; } </SCRIPT> </BODY> |
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
<BODY onload="Init()"> <SCRIPT FOR="SplitBar1" EVENT="Event(EventID)" LANGUAGE="JScript"> alert( SplitBar1.EventParam(-2) ); </SCRIPT> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { } </SCRIPT> </BODY> |
14 |
Is it possible to get notified once the user moves the split bar
<BODY onload="Init()"> <SCRIPT FOR="SplitBar1" EVENT="Drag(Position)" LANGUAGE="JScript"> alert( "New Position" ); alert( Position ); </SCRIPT> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { } </SCRIPT> </BODY> |
13 |
How do I get notified once the user drop the split bar to a new position
<BODY onload="Init()"> <SCRIPT FOR="SplitBar1" EVENT="DragEnd(Position,Cancel)" LANGUAGE="JScript"> alert( "New Position" ); alert( Position ); </SCRIPT> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { } </SCRIPT> </BODY> |
12 |
How do I programmatically move the split bar, to the right/bottom most position
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.ObjectsLT = "Command1"; SplitBar1.ObjectsRB = "Command2"; SplitBar1.MoveTo(SplitBar1.Max); } </SCRIPT> </BODY> |
11 |
How do I programmatically move the split bar, to the left/top most position
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.ObjectsLT = "Command1"; SplitBar1.ObjectsRB = "Command2"; SplitBar1.MoveTo(SplitBar1.Min); } </SCRIPT> </BODY> |
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)
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.LimitLT = "32D"; SplitBar1.LimitRB = "32D"; } </SCRIPT> </BODY> |
7 |
How can I specify the limit to move the splitbar (percent)
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.LimitLT = "50%"; SplitBar1.LimitRB = "50%"; } </SCRIPT> </BODY> |
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)
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.AddObjectLT("Command1"); SplitBar1.AddObjectRB("Command2"); SplitBar1.AddObjectRB("SplitBar2"); SplitBar1.AddObjectRB("Command3"); } </SCRIPT> </BODY> |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
<BODY onload="Init()"> <OBJECT CLASSID="clsid:9F28FDED-5EBC-4E9A-A596-C3813C966A0C" id="SplitBar1"></OBJECT> <SCRIPT LANGUAGE="JScript"> function Init() { SplitBar1.ObjectsLT = "Command1"; SplitBar1.ObjectsRB = "Command2,SplitBar2,Command3"; SplitBar1.AddObjectLT("Command1"); SplitBar1.AddObjectRB("Command2"); SplitBar1.AddObjectRB("SplitBar2"); SplitBar1.AddObjectRB("Command3"); } </SCRIPT> </BODY> |
2 |
How do I change the split bar's color
|
1 |
How do I change the control's background color
|