21 |
How do I specify that an object should be moved not resized
with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command1'; end |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
with AxSplitBar1 do begin BorderWidth := 0; BorderHeight := 0; SplitBackColor := Color.FromArgb(0,0,0); end |
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
with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command2'; MoveOnDrop := False; end |
15 |
How do I know what events your control supports
// Event event - Notifies the application once the control fires an event. procedure TWinForm1.AxSplitBar1_Event(sender: System.Object; e: AxEXSPLITBARLib._ISplitBarEvents_EventEvent); begin with AxSplitBar1 do begin OutputDebugString( get_EventParam(-2) ); end end; |
14 |
Is it possible to get notified once the user moves the split bar
// Drag event - Notifies that the user drags the split bar. procedure TWinForm1.AxSplitBar1_Drag(sender: System.Object; e: AxEXSPLITBARLib._ISplitBarEvents_DragEvent); begin with AxSplitBar1 do begin OutputDebugString( 'New Position' ); OutputDebugString( e.position ); end end; |
13 |
How do I get notified once the user drop the split bar to a new position
// DragEnd event - Occurs once the user ends dragging the split bar. procedure TWinForm1.AxSplitBar1_DragEnd(sender: System.Object; e: AxEXSPLITBARLib._ISplitBarEvents_DragEndEvent); begin with AxSplitBar1 do begin OutputDebugString( 'New Position' ); OutputDebugString( e.position ); end end; |
12 |
How do I programmatically move the split bar, to the right/bottom most position
with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command2'; MoveTo(Max); end |
11 |
How do I programmatically move the split bar, to the left/top most position
with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command2'; MoveTo(Min); end |
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
// Show event - Occurs when an object requires to be shown or hidden. procedure TWinForm1.AxSplitBar1_Show(sender: System.Object; e: AxEXSPLITBARLib._ISplitBarEvents_ShowEvent); begin with AxSplitBar1 do begin OutputDebugString( e.object ); OutputDebugString( e.visible ); end end; with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command2'; HideOnLimit := False; end |
8 |
How can I specify the limit to move the splitbar (hard coded value)
with AxSplitBar1 do begin LimitLT := '32D'; LimitRB := '32D'; end |
7 |
How can I specify the limit to move the splitbar (percent)
with AxSplitBar1 do begin LimitLT := '50%'; LimitRB := '50%'; end |
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)
with AxSplitBar1 do begin AddObjectLT('Command1'); AddObjectRB('Command2'); AddObjectRB('SplitBar2'); AddObjectRB('Command3'); end |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
with AxSplitBar1 do begin ObjectsLT := 'Command1'; ObjectsRB := 'Command2,SplitBar2,Command3'; AddObjectLT('Command1'); AddObjectRB('Command2'); AddObjectRB('SplitBar2'); AddObjectRB('Command3'); end |
2 |
How do I change the split bar's color
|
1 |
How do I change the control's background color
|