|
144
|
Defines the colors, to display overlapping links

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
.Add "Node <b>4",16,-48
.Add "Node <b>5",-1024,-48
.Add "Node <b>6",16,512
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.Links.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2),"L2"
.Links.Add SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1),"L3"
.ShowLinks = ShowExtendedLinksEnum.exChangeColorOnOverlap Or ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
.OverlapLinksColors = "red,orange"
.LinksColor = RGB(128,128,128)
.AxisStyle = exNoLines
.ShowGridLines = False
.EndUpdate
End With
|
|
143
|
The exPreventOverlapMixt flag must always be used alongside either the exPreventOverlap or exChangeColorOnOverlap flag. When used with the exPreventOverlap flag, it ensures that links avoid overlapping with elements or obstacles, enabling their paths to include both rectangular and diagonal lines. When combined with the exChangeColorOnOverlap flag, overlapping links alternately adjust their width in addition to changing colors (sample 2)

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
.Add "Node <b>4",16,-48
.Add "Node <b>5",-1024,-48
.Add "Node <b>6",16,512
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.Links.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2),"L2"
.Links.Add SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1),"L3"
.ShowLinks = ShowExtendedLinksEnum.exChangeColorOnOverlap Or ShowExtendedLinksEnum.exPreventOverlapMixt Or ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
.LinksColor = RGB(128,128,128)
.AxisStyle = exNoLines
.ShowGridLines = False
.EndUpdate
End With
|
|
142
|
The exChangeColorOnOverlap flag changes the color for links in areas where they overlap with other links, enhancing clarity and distinction between them

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
.Add "Node <b>4",16,-48
.Add "Node <b>5",-1024,-48
.Add "Node <b>6",16,512
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.Links.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2),"L2"
.Links.Add SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1),"L3"
.ShowLinks = ShowExtendedLinksEnum.exChangeColorOnOverlap Or ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
.LinksColor = RGB(128,128,128)
.AxisStyle = exNoLines
.ShowGridLines = False
.EndUpdate
End With
|
|
141
|
The exPreventOverlapMixt flag must always be used alongside either the exPreventOverlap or exChangeColorOnOverlap flag. When used with the exPreventOverlap flag, it ensures that links avoid overlapping with elements or obstacles, enabling their paths to include both rectangular and diagonal lines. When combined with the exChangeColorOnOverlap flag, overlapping links alternately adjust their width in addition to changing colors (sample 1)

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
.Add "Node <b>4",16,-48
.Add "Node <b>5",-1024,-48
.Add "Node <b>6",16,512
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.Links.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2),"L2"
.Links.Add SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1),"L3"
.ShowLinks = ShowExtendedLinksEnum.exPreventOverlap Or ShowExtendedLinksEnum.exPreventOverlapMixt Or ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
.LinksColor = RGB(128,128,128)
.AxisStyle = exNoLines
.ShowGridLines = False
.EndUpdate
End With
|
|
140
|
The exPreventOverlap flag adjusts the links to prevent them from overlapping the connected objects. The exPreventOverlap option calculates the path between A and B using the A* (A-star) pathfinding algorithm, which can be a time-consuming operation

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
.Add "Node <b>4",16,-48
.Add "Node <b>5",-1024,-48
.Add "Node <b>6",16,512
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.Links.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2),"L2"
.Links.Add SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1),"L3"
.ShowLinks = ShowExtendedLinksEnum.exPreventOverlap Or ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
.LinksColor = RGB(128,128,128)
.AxisStyle = exNoLines
.ShowGridLines = False
.EndUpdate
End With
|
|
139
|
How can I replace or add an icon at runtime

With SwimLane1
.BeginUpdate
.ReplaceIcon "gAAAABgYACEHgUJFEEAAWhUJCEJEEJggEhMCYEXjUbjkJQECj8gj8hAEjkshYEpk8kf8ClsulsvAExmcvf83js5nU7nkCeEcn8boMaocXosCB9Hn09pkzcEuoL/fE+O" & _
"kYB0gB9YhIHrddgVcr9aktZADAD8+P8CgIA=="
.ReplaceIcon "C:\images\favicon.ico",0
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <img>1</img>",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
End With
|
|
138
|
exActionContextMenuObject, An item from object's context menu is executing. Use the AllowContextMenu property to specify the combination of keys that allows the user to open the object's context menu. Use the ContextMenu property to provide a custom context menu for the objects on the surface. The ActionContextMenu event notifies your application once an action occurs within the object's context menu.
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 18 ? `exActionContextMenuObject` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 18 ? `exActionContextMenuObject` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowDesignHeader = exDesignHeaderLock
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
With .Pools.Add(-100,-100,250,160)
.Lane(exLaneHorizontal).Children.Count = 2
.Lane(exLaneVertical).Children.Count = 2
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Right-Click the pool, element or the link to open its context menu, and change a property of it" )
End With
|
|
137
|
exContextMenuObject, The object's context menu is running. The user right-clicks an object on the surface, and it's context menu is shown. Use the AllowContextMenu property to specify the combination of keys that allows the user to open the object's context menu. Use the ContextMenu property to provide a custom context menu for the objects on the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 17 ? `exContextMenuObject` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 17 ? `exContextMenuObject` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowDesignHeader = exDesignHeaderLock
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
With .Pools.Add(-100,-100,250,160)
.Lane(exLaneHorizontal).Children.Count = 2
.Lane(exLaneVertical).Children.Count = 2
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Right-Click the pool, element or the link to open its context menu" )
End With
|
|
136
|
exMoveLane, The user moves/changes the position of the lane of the pool. The AllowMoveLane property specifies the keys combination to allow user to moves/changes the position the lane
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 16 ? `exMoveLane` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 16 ? `exMoveLane` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowDesignHeader = exDesignHeaderLock
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
With .Pools.Add(-100,-100,250,160)
.Lane(exLaneHorizontal).Children.Count = 2
.Lane(exLaneVertical).Children.Count = 2
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click the lane's header to drag to a new position" )
End With
|
|
135
|
exResizeLane, The user resizes the lane of the pool. The AllowResizePoolHeader property specifies the keys combination to allow user to resize the header of the pool
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 15 ? `exResizeLane` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 15 ? `exResizeLane` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowDesignHeader = exDesignHeaderLock
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
With .Pools.Add(-100,-100,250,160)
.Lane(exLaneHorizontal).Children.Count = 2
.Lane(exLaneVertical).Children.Count = 2
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click the pool's header to resize it" )
End With
|
|
134
|
exResizePoolHeader, the user resizes the header's pool from the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 14 ? `exResizePoolHeader` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 14 ? `exResizePoolHeader` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click the pool's header to resize it" )
End With
|
|
133
|
exMovePool, The user moves the pool from the surface. The AllowMovePool property specifies the keys combination to allow user to move the pool
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 13 ? `exMovePool` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 13 ? `exMovePool` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click a pool and drag to reposition it" )
End With
|
|
132
|
exResizePool, The user resizes the pool from the surface. The AllowResizePool property specifies the keys combination to allow user to resize the pool
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 12 ? `exResizePool` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 12 ? `exResizePool` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Resize a pool" )
End With
|
|
131
|
exCreatePool, The user creates pools on the surface. The AllowCreatePool property specifies the keys combination to allow user to create pools on the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 11 ? `exCreatePool` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 11 ? `exCreatePool` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Hold SHIFT, double-click on the surface, and immediately drag to a new position to create a new pool" )
End With
|
|
130
|
exDesignMode, The user changes the surface's design mode. The exDesignMode operation occurs, when the user selects a new design-mode, from the control's toolbar.
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 10 ? `exDesignMode` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 10 ? `exDesignMode` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click the Design Menu and select one of the options" )
End With
|
|
129
|
exUndo, An Undo operation is performed (CTR + Z), exRedo, A Redo operation is performed (CTR + Y). exUndoRedoUpdate, The Undo/Redo queue is updated
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value case (default:value;32:`exUndoRedoUpdate`;33:`exUndo`;34:`exRedo`)",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value case (default:value;32:`exUndoRedoUpdate`;33:`exUndo`;34:`exRedo`)",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Press CTRL+Z to Undo, CTRL+Y to Redo" )
End With
|
|
128
|
exLinkObjects, the user creates an element on the surface. The AllowLinkObjects property specifies the keys combination to allow user to link elements on the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 9 ? `exLinkObjects` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 9 ? `exLinkObjects` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.EndUpdate
Debug.Print( "Hold SHIFT, click an element, and drag to another element to create a link between them" )
End With
|
|
127
|
exEditObject, the user edits the element's caption
' Click event - Occurs when the user presses and then releases the left mouse button over the control.
Private Sub SwimLane1_Click()
' ElementFromPoint(-1,-1).Edit(0)
End Sub
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 8 ? `exEditObject` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 8 ? `exEditObject` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click an element to edit its caption" )
End With
|
|
126
|
exCreateObject, the user creates an element on the surface. The AllowCreateObject property specifies the keys combination to allow user to create elements on the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 7 ? `exCreateObject` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 7 ? `exCreateObject` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Double-click on the surface and immediately drag to a new position to create an element" )
End With
|
|
125
|
exSelectNothing, the user clicks an empty zone of the surface. The AllowSelectNothing property specifies the keys combination to allow user to select nothing on the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 6 ? `exSelectNothing` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 6 ? `exSelectNothing` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowSelectNothing = True
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add("Node <b>2").Selected = True
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Select an element, and then click outside to select nothing" )
End With
|
|
124
|
exSelectElement, the user clicks the object to get it selected. The AllowSelectObject property specifies the keys combination to allow user to select the object
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 5 ? `exSelectElement` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 5 ? `exSelectElement` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Hold ALT and click, then drag to select elements within the drawn rectangle. Click an element to select it. CTRL + CLick to uns" & _
"elect it" )
End With
|
|
123
|
exMoveElement, the user moves the object. The AllowMoveObject property specifies the keys combination to allow user to move the object
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 4 ? `exMoveElement` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 4 ? `exMoveElement` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Move an element" )
End With
|
|
122
|
exResizeElement, the user resizes the object. The AllowResizeObject property specifies the keys combination to allow user to resize the object
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 3 ? `exResizeElement` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 3 ? `exResizeElement` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add("Node <b>1",-64,-64).AutoSize = False
.Add("Node <b>2").AutoSize = False
.Add("Node <b>3",64,-64).AutoSize = False
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Resize an element" )
End With
|
|
121
|
exSurfaceHome, the user clicks the Home button on the control's toolbar, so the surface is restored to original position. The Home method has the same effect
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 2 ? `exSurfaceHome` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 2 ? `exSurfaceHome` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click the Home button" )
End With
|
|
120
|
exSurfaceZoom, the user magnifies or shrinks the surface. The AllowZoomSurface property specifies the keys combination to allow user to zoom the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 1 ? `exSurfaceZoom` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 1 ? `exSurfaceZoom` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click and drag the surface to reposition it" )
End With
|
|
119
|
exSurfaceMove, the user scrolls or moves the surface. The AllowMoveSurface property specifies the keys combination to allow user to move / scroll the surface
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( .FormatABC("value = 0 ? `exSurfaceMove` : value",Operation) )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( .FormatABC("value = 0 ? `exSurfaceMove` : value",Operation) )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
Debug.Print( "Click and drag the surface to reposition it" )
End With
|
|
118
|
FormatABC method formats the A,B,C values based on the giving expression and returns the result
With SwimLane1
Debug.Print( .FormatABC("value format ``",1000) )
End With
|
|
117
|
FreezeEvents(Freeze) method prevents firing any event. For instance, FreezeEvents(True) freezes the control's events, no no event is fired, until the FreezeEvents(False) is called
' Event event - Notifies the application once the control fires an event.
Private Sub SwimLane1_Event(ByVal EventID As Long)
With SwimLane1
Debug.Print( .EventParam(-2) )
End With
End Sub
With SwimLane1
.FreezeEvents True
Debug.Print( "No event is fired after FreezeEvents(True) call" )
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
End With
|
|
116
|
The exAllowChangeFrom(0x20)/exAllowChangeTo(0x40) flag of LinkControlPointEnum type allows the user to adjust the link's from/to element by dragging and dropping the start control point (requires the exStartControlPoint/exEndControlPoint flag)
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( Operation )
Debug.Print( .FocusLink.ID )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( Operation )
Debug.Print( .FocusLink.ID )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
.Add "Node <b>3",64,-64
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.FocusLink = "L1"
.EndUpdate
End With
|
|
115
|
The LayoutStartChanging(exFocusLink)/LayoutEndChanging(exFocusLink) event notifies your application when the user focuses on a new link
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( Operation )
Debug.Print( .FocusLink )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( Operation )
Debug.Print( .FocusLink )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.EndUpdate
End With
|
|
114
|
Focus a link
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( Operation )
End With
End Sub
' LayoutStartChanging event - Occurs when the control's layout is about to be changed.
Private Sub SwimLane1_LayoutStartChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutStartChanging" )
Debug.Print( Operation )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Node <b>1",-64,-64
.Add "Node <b>2"
End With
.Pools.Add -100,-100,250,160
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2),"L1"
.FocusLink = "L1"
.EndUpdate
End With
|
|
113
|
The caption is displayed on the back, so the picture overrides it. How can I place the caption on the foreground

With SwimLane1
.BeginUpdate
.DrawPartsOrder = "extracaption,extrapicture,picture,check,caption,client"
.HTMLPicture("pic1") = "c:\exontrol\images\sun.png"
With .Elements.Add("<b>Element")
.PicturesAlign = exMiddleCenter
.CaptionAlign = exMiddleCenter
.Pictures = "pic1"
End With
.EndUpdate
End With
|
|
112
|
Expandable-caption

' AnchorClick event - Occurs when an anchor element is clicked.
Private Sub SwimLane1_AnchorClick(ByVal AnchorID As String, ByVal Options As String)
With SwimLane1
Debug.Print( AnchorID )
End With
End Sub
With SwimLane1
With .Elements.Add("<solidline> <c><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;e64=gA8ABzABvABsABpABkg8JABuABlAAgAA4AAwisXjMYH0TAECM" & _
"YAjsCMwAM4AkMGhEGOUei0Yl8bkQAOAAlsGmsSlp0h0SgkCF8DgsNhUMhEKiESkYAoMlk8phssmcCltLMNTAFOlFDlc2l0amMxjomAAjAA5AA2tMaHcfplZk1blVDqtu" & _
"oNXjoAAEBA=>▲</a><br><solidline>+ balance: Currency = 0</solidline><br>+ deposit(amount: Currency)<r><a 2;e64=gA8ABjAA+AEC" & _
"MwAM8DABvABshoAOQAEAAHAAGEWjEajMGNoAMoAOgANERMgAOcHAAvAEJhcEh0Qh0Tg0CmkqMMFlUuhkxiMTisXjNCjk6EwAEYAHIAG1MjY7lUsnkwh8/nUClk5gwAAE" & _
"BA==>▲</a><br>+ withdraw(amount: Currency)")
.ID = "Account"
.X = -256
.Y = -164
.CaptionSingleLine = exCaptionBreakWrap
.CaptionAlign = &H4
End With
With .Elements.Add("<solidline> <c><b>Person</b></solidline><br>+ name: String <r><a 1;e64=gA8ABzABvABsABpABkg8JABuABlAAgAA4AAwisXjMYH0TAECMYAjsCMw" & _
"AM4AkMGhEGOUei0Yl8bkQAOAAlsGmsSlp0h0SgkCF8DgsNhUMhEKiESkYAoMlk8phssmcCltLMNTAFOlFDlc2l0amMxjomAAjAA5AA2tMaHcfplZk1blVDqtuoNXjoAA" & _
"EBA=>▲</a><br><solidline># birth: Date</solidline><br>+ getCurrentAge(): int<r><a 2;e64=gA8ABjAA+AECMwAM8DABvABshoAOQAEAAH" & _
"AAGEWjEajMGNoAMoAOgANERMgAOcHAAvAEJhcEh0Qh0Tg0CmkqMMFlUuhkxiMTisXjNCjk6EwAEYAHIAG1MjY7lUsnkwh8/nUClk5gwAAEBA==>▲</a>")
.ID = "Person"
.Y = -164
.CaptionSingleLine = exCaptionBreakWrap
End With
With .Elements.Add("<solidline> <c><b>Student</b></solidline><br><solidline>+ classes: List<Course> <r><a 1;e64=gA8ABzABvABsABpABkg8JABuABlAA+AAgAE" & _
"CMcTi4AMwAM4AjMGhEGOUVAA4AAwk8plcqihwAElg0wiUlOkOiUEgQvgcFhsKhkIhUQiUUnccj0gn0jmMagUlowAMNOpEfkMNkkmlEqrctjQmAAjAA5AA2sssHcbnkdq" & _
"1Ln1QtVSjQAAEBA==>▲</a></solidline><br>- attend(class: Course)<r><a 2;e64=gA8ABjAA+AECMwAM8DABvABshoAOQAEAAHAAGEWjEajMGNoA" & _
"MoAOgANERMgAOcHAAvAEJhcEh0Qh0Tg0CmkqMMFlUuhkxiMTisXjNCjk6EwAEYAHIAG1MjY7lUsnkwh8/nUClk5gwAAEBA==>▲</a><br>- sleep()")
.ID = "Student"
.Y = -64
.CaptionSingleLine = exCaptionBreakWrap
End With
With .Links.Add(SwimLane1.Elements.Item("Account"),SwimLane1.Elements.Item("Student"))
.Caption = "<fgcolor A0A0A0><solidline 808080> <c><b>Link</b></solidline><br># count: number <r><a ;exp=12992>➤</a>"
End With
End With
|
|
111
|
Expandable-caption

With SwimLane1
With .Elements.Add("<solidline><b>Header</b></solidline><br>Line1<r><a ;exp=show lines>+</a><br>Line2<br>Line3")
.CaptionSingleLine = exCaptionBreakWrap
End With
End With
|
|
110
|
Draws a frame arround the link's arrow

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
.ArrowSize = 8
.ArrowColor = RGB(255,255,255)
.ArrowFrameColor = RGB(0,0,0)
End With
End With
.FitToClient
.EndUpdate
End With
|
|
109
|
Draws a frame arround the arrow for all links

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
.LinksArrowSize = 8
.LinksArrowColor = RGB(255,255,255)
.LinksArrowFrameColor = RGB(0,0,0)
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
End With
End With
.FitToClient
.EndUpdate
End With
|
|
108
|
Change the size to display the arrow of the link

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
.ArrowSize = 8
End With
End With
.FitToClient
.EndUpdate
End With
|
|
107
|
Change the size to display the arrows for all links

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
.LinksArrowSize = 8
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
End With
End With
.FitToClient
.EndUpdate
End With
|
|
106
|
Extends the caption on the element's width

With SwimLane1
With .Elements.Add("<solidline> <c><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;e64=gA8ABzABvABsABpABkg8JABuABlAAgAA4AAwisXjMYH0TAECM" & _
"YAjsCMwAM4AkMGhEGOUei0Yl8bkQAOAAlsGmsSlp0h0SgkCF8DgsNhUMhEKiESkYAoMlk8phssmcCltLMNTAFOlFDlc2l0amMxjomAAjAA5AA2tMaHcfplZk1blVDqtu" & _
"oNXjoAAEBA=>▲</a><br><solidline>+ balance: Currency = 0</solidline><br>+ deposit(amount: Currency)<r><a 2;e64=gA8ABjAA+AEC" & _
"MwAM8DABvABshoAOQAEAAHAAGEWjEajMGNoAMoAOgANERMgAOcHAAvAEJhcEh0Qh0Tg0CmkqMMFlUuhkxiMTisXjNCjk6EwAEYAHIAG1MjY7lUsnkwh8/nUClk5gwAAE" & _
"BA==>▲</a><br>+ withdraw(amount: Currency)")
.ID = "Account"
.X = -128
.CaptionSingleLine = exCaptionBreakWrap
.AutoSize = False
.Width = 256
.Height = .AutoHeight
.CaptionAlign = &H4
End With
End With
|
|
105
|
Gets the width/height of the element to fit its content ( as if the AutoSize property is True )

' AnchorClick event - Occurs when an anchor element is clicked.
Private Sub SwimLane1_AnchorClick(ByVal AnchorID As String, ByVal Options As String)
With SwimLane1
With .Elements.Item("Account")
.Height = .AutoHeight
End With
End With
End Sub
With SwimLane1
With .Elements.Add("<solidline> <c><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;e64=gA8ABzABvABsABpABkg8JABuABlAAgAA4AAwisXjMYH0TAECM" & _
"YAjsCMwAM4AkMGhEGOUei0Yl8bkQAOAAlsGmsSlp0h0SgkCF8DgsNhUMhEKiESkYAoMlk8phssmcCltLMNTAFOlFDlc2l0amMxjomAAjAA5AA2tMaHcfplZk1blVDqtu" & _
"oNXjoAAEBA=>▲</a><br><solidline>+ balance: Currency = 0</solidline><br>+ deposit(amount: Currency)<r><a 2;e64=gA8ABjAA+AEC" & _
"MwAM8DABvABshoAOQAEAAHAAGEWjEajMGNoAMoAOgANERMgAOcHAAvAEJhcEh0Qh0Tg0CmkqMMFlUuhkxiMTisXjNCjk6EwAEYAHIAG1MjY7lUsnkwh8/nUClk5gwAAE" & _
"BA==>▲</a><br>+ withdraw(amount: Currency)")
.ID = "Account"
.X = -128
.CaptionSingleLine = exCaptionBreakWrap
.AutoSize = False
.Width = 256
.Height = .AutoHeight
.CaptionAlign = &H4
End With
End With
|
|
104
|
Fullfit the caption on the element's width

With SwimLane1
With .Elements.Add("<solidline><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;properties>+</a><br><solidline>+ balance: Currency = 0</s" & _
"olidline><br>+ deposit(amount: Currency)<r><a 2;methods>+</a><br>+ withdraw(amount: Currency)")
.CaptionSingleLine = exCaptionBreakWrap
.BackColor = RGB(248,248,248)
.AutoSize = False
.Width = 194
.Height = 76
.CaptionAlign = &H4
End With
End With
|
|
103
|
Wrap the caption by <br> or "\r\n" sequence only

With SwimLane1
With .Elements.Add("<solidline><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;properties>+</a><br><solidline>+ balance: Currency = 0</s" & _
"olidline><br>+ deposit(amount: Currency)<r><a 2;methods>+</a><br>+ withdraw(amount: Currency)")
.CaptionSingleLine = exCaptionBreakWrap
.BackColor = RGB(248,248,248)
End With
End With
|
|
102
|
Display a custom tooltip
' MouseMove event - Occurs when the user moves the mouse.
Private Sub SwimLane1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With SwimLane1
.ShowToolTip "new content","",,"+8","+8"
End With
End Sub
|
|
101
|
Shows the tooltip of the object moved relative to its default position
' MouseMove event - Occurs when the user moves the mouse.
Private Sub SwimLane1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With SwimLane1
.ShowToolTip "<null>","<null>",,"+8","+8"
End With
End Sub
With SwimLane1
.Elements.Add("Element with a Tooltip").ToolTip = "This is a bit of text that should be displayed when cursor hovers the element."
End With
|
|
100
|
Add a pool to cover all visible-elements

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Pools.Add().HeaderSize(exHeaderLeft) = 24
.EndUpdate
End With
|
|
99
|
How can I ensure that a specified pool fits the surface's visible area
With SwimLane1
With .Pools
With .Add().Pattern
.Type = exPatternBDiagonal
.Color = RGB(224,224,224)
End With
.Add(2000).EnsureVisible
End With
End With
|
|
98
|
No property for the pool can be saved/restored through Undo/Redo feature

With SwimLane1
.AllowUndoRedo = True
With .Pools.Add(-54,-47,244,112)
l = .StartUpdatePool
With .Lane(exLaneVertical)
.Color = RGB(240,240,240)
.Children.Count = 2
End With
.EndUpdatePool l
End With
End With
|
|
97
|
Rename Undo/Redo commands into the control's toolbar

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.ToolBarFormat = "-1,100,102,101,|,103,104"
.ToolBarCaption(103) = "Anuleaza <img>4</img>"
.ToolBarCaption(104) = "<img>5</img>Reface"
.ToolBarToolTip(103) = "Anuleaza ultima actiune UI. Pentru a anula o actiune apasati Ctrl+Z."
.ToolBarToolTip(104) = "Inverseaza cea mai recenta operatie de anulare. Pentru a reface o actiune apasati Ctrl+Y."
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.EndUpdate
End With
|
|
96
|
Add Undo/Redo commands to control's toolbar

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.ToolBarFormat = "-1,100,102,101,|,103,104"
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.EndUpdate
End With
|
|
95
|
Clear Undo/Redo queue (method 2)

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
c = .UndoRedoQueueLength
.UndoRedoQueueLength = 0
.UndoRedoQueueLength = c
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
94
|
Clear Undo/Redo queue (method 1)

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.AllowUndoRedo = True
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
93
|
Removes Redo operations

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Undo
.RedoRemoveAction 10
Debug.Print( .RedoListAction() )
.EndUpdate
End With
|
|
92
|
Removes Undo operations

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.UndoRemoveAction 10
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
91
|
Record the UI operations as a block of undo/redo operations

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.StartBlockUndoRedo
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.EndBlockUndoRedo
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
90
|
Groups the next to current Undo/Redo Actions in a single block

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.GroupUndoRedoActions 3
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
89
|
Limits the number of entries within the Undo/Redo queue

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.UndoRedoQueueLength = 1
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
88
|
Lists the Redo actions that can be performed on the surface

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Undo
Debug.Print( .RedoListAction() )
.EndUpdate
End With
|
|
87
|
Lists the Undo actions that can be performed on the surface

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
Debug.Print( .UndoListAction() )
.EndUpdate
End With
|
|
86
|
Checks whether the Undo operation is possible

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Undo
Debug.Print( "CanRedo" )
Debug.Print( .CanRedo )
.EndUpdate
End With
|
|
85
|
Call Redo by code

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Undo
.Redo
.EndUpdate
End With
|
|
84
|
Checks whether the Undo operation is possible

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
Debug.Print( "CanUndo" )
Debug.Print( .CanUndo )
.EndUpdate
End With
|
|
83
|
Call Undo by code

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Undo
.EndUpdate
End With
|
|
82
|
Save the element's properties for Undo/Redo operations, by code

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.StartBlockUndoRedo
With .Links.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
h = .StartUpdateLink
.Color = RGB(255,0,0)
.Width = 2
.ShowDir = False
.ShowLinkType = exLinkStraight
.EndUpdateLink h
End With
.EndBlockUndoRedo
.EndUpdate
End With
|
|
81
|
No color is restored for the link when Undo/Redo operation is executed

' AddElement event - A new element has been added to the surface.
Private Sub SwimLane1_AddElement(ByVal Element As EXSWIMLANELibCtl.IElement)
' Element.ShowCheckBox = True
' Element.CheckBoxAlign = 2
End Sub
With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
With .Elements
.Add "Check <b>1",-64,-64
.Add("Check <b>2").Checked = exChecked
End With
.StartBlockUndoRedo
With .Links.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
h = .StartUpdateLink
.Color = RGB(255,0,0)
.Width = 2
.ShowDir = False
.ShowLinkType = exLinkStraight
.EndUpdateLink h
End With
.EndBlockUndoRedo
.EndUpdate
End With
|
|
80
|
Save the element's properties for Undo/Redo operations, by code

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Elements.Add "Item <b>1",-64,-64
.StartBlockUndoRedo
With .Elements.Add("Item <b>2")
h = .StartUpdateElement
.BackColor = RGB(0,0,0)
.ForeColor = RGB(255,255,255)
.BorderColor = RGB(255,0,0)
.EndUpdateElement h
End With
.EndBlockUndoRedo
.EndUpdate
End With
|
|
79
|
No color is restored for the element when Undo/Redo operation is executed

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Elements.Add "Item <b>1",-64,-64
.StartBlockUndoRedo
With .Elements.Add("Item <b>2")
h = .StartUpdateElement
.BackColor = RGB(0,0,0)
.ForeColor = RGB(255,255,255)
.BorderColor = RGB(255,0,0)
.EndUpdateElement h
End With
.EndBlockUndoRedo
.EndUpdate
End With
|
|
78
|
How can I ensure that a specified element fits the surface's visible area

With SwimLane1
With .Elements
With .Add("Element A",-100).Pattern
.Type = exPatternBDiagonal
.Color = RGB(224,224,224)
End With
.Add("Element B",2000).EnsureVisible
End With
End With
|
|
77
|
LayoutEndChanging(exUndo), LayoutEndChanging(exRedo) or LayoutEndChanging(exUndoRedoUpdate) notifiy your application once a Undo/Redo operation is executed (CTRL+Z, CTRL+Y) or updated
' LayoutEndChanging event - Notifies your application once the control's layout has been changed.
Private Sub SwimLane1_LayoutEndChanging(ByVal Operation As EXSWIMLANELibCtl.LayoutChangingEnum)
With SwimLane1
Debug.Print( "LayoutEndChanging" )
Debug.Print( Operation )
End With
End Sub
With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.EndUpdate
End With
|
|
76
|
Turn on the Undo/Redo feature

With SwimLane1
.BeginUpdate
.AllowUndoRedo = True
.Pools.Add -154,-82,244,122
With .Elements
.Add "Item <b>1",-64,-64
.Add "Item <b>2"
End With
.Links.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.EndUpdate
End With
|
|
75
|
ImageSize property on 32 (specifies the size of control' icons/images/check-boxes/radio-buttons)

' AddElement event - A new element has been added to the surface.
Private Sub SwimLane1_AddElement(ByVal Element As EXSWIMLANELibCtl.IElement)
' Element.ShowCheckBox = True
End Sub
With SwimLane1
.BeginUpdate
.ImageSize = 32
.Font.Size = 16
.ContextMenuFont.Size = 16
.Images "gBJJgBAIDAAEg4AEEKAD/hz/EMNh8TIRNGwAjEZAEXjAojKAjMLjABhkaABAk0plUrlktl0vmExmUzmk1m03nE5nU7nk9miAoE+oVDolFo1HpFJpU5h8Sf9OqFNqUOq" & _
"NUqdPq9VrFWrlbr1QpdhAFAkFis1ntFptVrtkrpszrNvmVxqk3uVtm1kmF3sdBvF/wGBmV+j9BYGHwWJulfxdax2NyFdx2JlV6l9Nw7AAGZymdz2Cy2GxErvWcz9ivlw" & _
"yV21cuxugwktzGIzmvwtl0+53U5y0a0Wazmmyu/3dCyOMyXHx/J5nIr9q3uyqnBxFN3G46ma4vb7mD2Ng4nZze00fDkHC7t7us2rOX5tguetpHRlmz4HVqnXk1PjHO+C" & _
"MPo9MBMC+j2vC8j7wS8cFNI4kBo05UIvfCT/NsnsApU+0Fqg/T+oy/kPxC0sEQfErKQK96+w28UWRI8UGvO8sTLS9r2PWmsMJTDTask3CsIbIEQRA3shOXEEAO/GclJ9" & _
"FEKrrA8FRbKMXRIlb0JxCkjS1LMswhCcvuel0cv26cSMa8Ufx+2sQwhEUoSXOCjSbLcnxjKc7sdKUVyq28NtVI71P9P7JxtQEapjQ6fzfM8zPfNE2PhIsLL63E40slk5" & _
"y7N89LcyU9SvMb3SdUc6VJLj5VLVLfO/PS9KzNFHUa/0XyBD0dxlS9cxhMlTRSoNXypPErWDPyfNS+MwprRNO0FD8wVVZ1AI08URwVRjtJ1WCn21QkkUrXVLVPQS/XIk" & _
"FgTxT9iONZ9xVTdq+L1eKg3kkF6Upe68XtfV51/MtrVjBlwYFL1ev8y1/P6/lyzzYl02wntj0RVFmS1Qa+M5as93QxEUW9e993rfmQ2+vy65M/mL1lhl/2bj2ByVduMt" & _
"NhCJT9hdz41nN14Ld12Z9UjfI/oUAaGseiw6+uFLLhcVabJOS5RqOE0BHlZ5VnEr5fOMs3st+aa/bbRzrJGV51Y0b0DbqaWXZD90hIsPbjWu52+6Wyadpe66hhO+P/Xi" & _
"oW5rD8ZbrUZuVg6n1dsE/cXmewu1m9PVwnd35/nueXho/NaJzmjc61W76esuT77eG8pTquy9TwWH8LEzG8RDfFalx3Gcfvna9rvG/cptGLd9tuI6TZOP5Fiqi99vea+X" & _
"4VRcBq/JZZtVQ9cwSs5lsXE372+a9z7PbfB3VVqHyvMctLto8uob6eV0m/cD6MN2v+T33t6sBut42vdv2bJ8a997x2maFJfK+qArbGJPEKE+1qTflMsIdW/GCJX17KcT" & _
"6/czr/X+u1g29B7j/4BQfWkkx4zIHisjhPCmE0K4SwtXM+d4BvHRwNZOoBph9IJvPek9d40FoMJxf691jj2ywQQcHEWET4XJwkTszlVqm2GokewxtBT1DpQjRxDN0rUV" & _
"DNKdC3lb6tzNOwh6upMSSYfv4YBCl/bsn9PxiFCEo7SI6Obc9HeOrnY8x4jtHtdpN4GRbaorhsbu18Pph5CiHymI0RpSXGJ/z2oUOxYxG858AyiI+bfJtuTcG5yelBJy" & _
"T8okhqFd4a5yxL0rvulYtKCsZiWxWkc1s1cRoxxwhA31DLE0mR9l9HqX8fJgTDmFMVH0MIsRzVYnwnMi1dyzmhLt2kS2pxIiU62Wj5ptQGlSYFakLonTUJNLKaM5Wzlf" & _
"fEkuFkk5wTrhVO2eE7G6lJhxFFYUZ55zmn0WuBCD4pzhirFCKkbomsOoIYmZx5p90LoYWGPdD5g0QmJRKYxbZ6zYoVQ2jVGylSak7KSkFH6RSjpHKFuU+YMyNo5SulkC" & _
"6I0vonTCitMXPoEpVS2H5FQfEqp2R1opIgAEkJISYARTCukOhmPNI5Ex/wzGHUsicMwA1LHgQ90Y/KpoQHAD+pB/R4NzIaMAB9Xaw1gqaAOsh/A/ptIkWUfhGK1kZH8R" & _
"gH5GqvgArqRmt4AAPrTroRofBGADkqr6Rmu4D7CEaHARiwpJrEEZsXXwlVjyMWRsaRqwdkLGNBABZmytmyMnaINZqyVpLR2ftKAAAdd6h2osbaskdiq4EZtgSmyNcbVW" & _
"RJNXe3AA7REar3b0stlAAXBtoRmvJGLjEYAHUWsFcwCD/rnaop9aEICMAPdK5hT6xpeuzdOtAgKuJeGfdq6ggEbkTvAP+p9UCHXrvKkcgIA=="
With .VisualAppearance
.Add 1,"gBFLBCJwBAEHhEJAAEhABfICg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj" & _
"6CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7E" & _
"MRwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsOatVqjG5sYjcGC3La9cz3Pq/bpuDCbMxuaK1TrYXr1TTrcofBDldAxXRKDx" & _
"RDWVhLnYOw9i6XxzjuXprCaOoKB6EwbiCZZCGOdZYlcT4xHmbhMnwNxtn+G5bmqdZ7n4Pw/i+X5zm+dQ9g4CAFjsfAJheOI8HsDoWDWTB/lwSAQkmA5PEgRYoDyDwYFY" & _
"FoFmGCBmBqBphDgRJ0gOTIYBGRB/lyRh0iSCZbjYWJzgWDwIjYLoLmMCJGDKDJjBgWgqG6YhyhGHRzA2aJ1mCABOAiOJvhCZBJBYRoRmSCQmEqEQimkAZgg8TZnDCV4U" & _
"kmCUmBKZYJGYWoWCUUhiFMNZckNUh2GENoaGaGZmgmJhqhqZpGGIEx2GYIxSGGGJdggWJth2Z4JmYeoemeSZ2H6H4hGmQhihyTRHGYLg7CiCgmgqIpokoNoOiOaJ4jqA" & _
"ochqaZGgaCxpAoZoaiaaJqEmWIcGgShcnCJwqEqFoR3YOoFlgchflqNouiuawHmWSYqGkWZQhcatzmaOoumuSp2j6L5bBaKo0GQKRnGGCxqiyCwmkqMpsksNpOGUGI7A" & _
"0ew1G0Rxlg0PptgsZuDG2Sx2l6N5tnYNZZjUDRXDCVo5l2FoymqOpukuNpujubwLjmWY5k0ZwxkaFxYlWdp6j6b5Lnafo/nABQdg2FxcUsY5BkmXAkmeQpckwNRrkKTh" & _
"8CSHZBk4NwyC4KxxgMDwakOMZDn8GgwnGAo2C4cwthMcwmCcMoHBMHRehwTIghySYNksZwcH4HBMEsHx5hyPItiweYxnwSZEH4Mozn0fR+DMAo7EYJ50gkdZelKdNql2" & _
"UgJn0GIukwH4HicQRai2GI4mSVpNl0dZGledgNgcYpYDWUx3FsOQi5YV5anaTY3G6W53A2RxylydxFjiaxEFCCgBBAQ=="
.Add 2,"gBFLBCJwBAEHhEJAAEhABcoFg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj" & _
"6CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7E" & _
"MRwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4" & _
"nGKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEokiEN5NCKfJ9DyTRjnS" & _
"cg1CEYxOBmBpPCgagdgcIZoHoGIFA4AxQkCAxKAgKBwgGSpIBCZhjF2E5UnQPQMiMCJBCIBwxkSQgsgo+JtDKT4ziiQw+k6EwAnsOgLnkHI+yCQ4iEuE4klkPhShEJBp" & _
"AoPgymOMoaDgHBjFMBgyD0HYTiCZSZhIIIGC4ChiHSew5kwM5omILZPiOBI0hwZw5kodIdA+M4Uj4PxOmMSJ9DuTQzmyZgviceZagaHVfj4awwmaAh2GUIYmCOEZZDaD" & _
"RDFGdwcg4EwyHMN4LBOaJbCoaZqgKH8qkMfIyD8DozDyfA7A0Coui0OpMmOZJdCsahKg6NooioChwmEMxLEoXJbDUTRXGSUgykyMgQG0GpPHMdI3D4TRCgSeQ0kmaw+l" & _
"GNAtCOZJVCiT5DhyRQwAqMg0EoDBBGEGAsASC5yiSCw+k4Mp6lWNQuksTpRjMTxDGzJwGmGMpDDKXYTECSAxl6Q5olkK4PgMMIVkASRMBMBgzEkaZEjsNALhIZA6AeQB" & _
"gk0ZJEgAAJ0CIAgODMNIsD6DRih9uYwFyAwfCUb5ijmbI+gwdxkk8MZMGeMpPCkDxzBiC5MHMPJLDSSROFMLIoBEQogEMFJPnENYQGgE4DCOaJfC7tYkhGTQ0kyWwyku" & _
"XpMiyRpKjKR4wngM4JmOWJACCdYtHMWw+Eych4nINYLAEYA8AgdAEEsQZajaQoog4GxPiMVIolcdxNG8XZVkmNoRwWRVBlFeFEeAZQJgnFiHgHwcAhjhHgGMSI5xki2C" & _
"yA4EQsA3i0HkBsLwKRFgAHcPkHopBJBcBeDUYI7xyDOHqKkWo2hLCsDIBIY4qQ5A8DoMMYwOAqCSBGKgU4yB2iDBwIgB4hxQgAAWNgBoAgsBdEcBUQ4sQ9A/HqD0JI8R" & _
"pBzH2OYVgahLBHFiJQJweQiDhDUE4SAARQAzFsG0EQwA6AOWSBkFgVAIBCHeGERQFQiCQHeFkC4vkiB8DyB4F4QxVDvGMNEOQexMjlBeOAKQiQLgfDA7QEAaRiBdEkH8" & _
"TI7AZiFBAGYBIABWjYBiGACioQ4C1A+AMMgWhfgxHgPsT4URIB0COKgPgjRwiAB8AYUArxBgCF6J4GY5hrAOCAPAAoGRRCsCIMEXATXfgAF8BMJwURuEQDgD4Q4OBoAe" & _
"HGFgLIwQrC2D0JoSQ+QvhrHoSgQI8AbDFGID8C4Ah6BQAQAASACwgCYCMAUMARAvCKAiAMCAokeCKBEOAKgCBoDaHuMsEAqwJDiACDURg8R6gPCyDofYWAhgoDIJ4ZAu" & _
"hoiGAYGgRoQw/A0GMMga4GwxiEDeIYYInATCDBQAoBAwAoDlA0KMBoVRGiDGwDQUYIRsgaGGDgM4LAwDWB8EcIA1APhjEgGQVwgRIgjFIIQHokgZA+CSEkLIKQSjHAwM" & _
"sCwDAsAEB2ABTIwRwD6A8CMToSxkAxE4HYIw+BsgbBEDAHYBwojCBoIYFgXSjABE4MsHIbQWhlGILQS4UhvBdAUKEEwHgxDAAABQQQUAhgKHiDwE4JS4A7BGLQZwCR4g" & _
"aBEMUYAqgKApHgGwVAIRNgvBMMQXImwZDtE4I8UIyAZCDCAE8AwrhgAdEEBACQLRCg4FEB4AYtA7CdEiPQMoJAMDNCkOMCAXAFDhH0D0Q4EgfAaGSK4NYzRUj9BuCgAg" & _
"swOBjB4Fqpw8B2ADAwE4A4Qx2DAE6JIaQPQGhAGKBcIQ5B5gHByKIFARwADbAyKUfgdBKBBGyEcVIAB/ijHoIoSA0gdBNl+OATYERZgBGSDYWIWAUCEGKA4FAhR7CIBt" & _
"YQGYZg4CMAiKEcAOwkBjHWE8Z4lQgA+DkBoTohwwCeAaMEEgBQCCABgHMRwQRhhMEWFQd4HwZgwDqFESItAbAGEANCpINAzANCCJkK4ah+heFYBURwsQrS2CsMYMoWGB" & _
"hYDWI0EInQgiApXaOVI1QFDsC8MUNoMBMA1HMJga4eh+BeAWOgNNowGjYzCGAAwax+iJBeBVT4gxoBIAGFsJFBxgBiGKFkKQ7g5DFFQEcAo4AzDDACKEQQLgCiJDYB0M" & _
"gRBCCQAgQEA=="
.Add 3,"gBFLBCJwBAEHhEJAAEhABQ4Fg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj" & _
"6CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7E" & _
"MRwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4" & _
"nGKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEosiYN5NHMOJ+D4TpTnS" & _
"eQ7CEY4uBmBpPhgagdgcIZoHibIEyUBJZDQIJShoCgcCAcoyAQOYYlcZJ1D0DxDCiQgwEiAZMHEMJLFKPJ9D2DoDnidQ4k+Y5QmKEROBkIhKD0JIZDIS4TGUCQuEeEJj" & _
"nOIg8CuY4RkYNgwGMM5RllGpThDRYIGKZIpCkJFUH0PINyWcQ3CaaZCG+HBnEOTJhD8Tx4GoeQ/GcaZSHOH5nCmQhshoZhihYYwhiYA4RlkNoNEMUZ3ByDjwEsPxOnMa" & _
"J9DuDR6F6GYmCmKh0nANtMioP4Gg8aoSiIO5NhodociqaY6GaFYkEyOg8lsNRNTaUgykyMgQG0GpPiONJbD8DpDEyfA6k0KwOkWMQsGsAJU0SagwkoJQJDIPISCQCJTG" & _
"SUwyGaM4KkmMgtksHpFjAZ4TGCBAbgaSpcksdhNAMIJHHsD5TjSWWMAMOpwjyLwbk6cAz0KRJiDkDYzESCwiggcgcgYIQwCIEINCMCITj6TVxkMXp2j0cQLlCTo7E2F4" & _
"ymkMZdhMPJHDGHpLAyVg+k4UwrCCSIyByDJ8DuDY8CiWY0kiXAXC6QJwFKGIjCeJpjgyezjlyDw6klHx5myRoMGwZwbkcToTEiew4kwbQfEmUgPkOKJUD4DpTHSHQmgk" & _
"XI/ASTA1g0XIEDMTBimyfI7jSLYHEiUoPk0Fw/kadAsHGao8A0A5smEMJ2mNyg5gzJZwDgCpChyIZVyIZwFCMJEPASRkBqE+IcHInRcDxA2H4bIsx0AtDsIBpwZwYicD" & _
"6BscwDwUBgHCIYaIfgtiVH2O4WgUwJjEFeAEQA7y4hMCiBMS4aRdB9A4CYE4LxljyBMHcDItBxinDCLcTYmgejBFQ9UTg9gFBOEmAQTI7A4iZGMGkQAWQ7jYA2HIL8BR" & _
"AjDG4HcCwARbjZHiNoDw1nLDnGyNINQ+wjCpBMEgcovQUgICQJEcgWRuBvAyJ4d4ugpCUAINcHogxIgnDiM4N4axzD3F2JMTY/hRqYF6FsWIxhYAGGoAALQYgYirBwBE" & _
"BwpAjBEAAIEIYsA2gOHCMAGgXAACIDmMITAUgFABH0D0I4WwvhNFGMAOIvxRD2GKNcMA8gjAPDCPwBogRPAxA8PgRwZRICYDED8RAXQEghEAN8DIgwIBdB4JYWwMgtiQ" & _
"HoFQKAiRFguFKGwGQhglDsEOVwEQQRkCKBwOIHgSREDRBYHEXQcQdD7GIGARQHRxipBrMobgewDCUCADsEYWAzgMHKHQDQxxsDzA6EMfAeQHB4GQDkUYPA0iECiKoGgR" & _
"hcDdA2GMQA8AOCjDSPgHI4QnApAKBICwHg1A+BcAwcYsgbjGGQNkCIgRsA6EcBEWANADjsB0B8YYzQQDIGSBcEYZBCCPEkFIHQSgkgZAwG4IwBAbAYGGAgL4Ch4g8BOC" & _
"QAA2KKC0GcAke4AAXAFCoHkDw4xbBFEcJkE4JRSiEFeJYKQVRMgJHODwX4xAgC/AsIIZAeAHDRG0HYI40RKCLEGDUI4jAghwBWIceA+whCpHMFYZYOQxglDMHMBQGxYj" & _
"VHiAoBIPgfgHGwPsHYJRSB6A0IERQLhCjJHMA4OQoAoCOACLYGYSx8DpBQIMWQdRnDRH+DsE4fB3CeAmM67kAAXBFEIDYDI7wLBtEoEIfYNwjiUGGJQYQMAjCHEAO0C4" & _
"zxW29CoCgfIxR9AKA6J8BgUAIhDGMIoJ40hqgwCgKETgnBhhqCGI0AIqgZhGDANQDIlBDCRGkCoJISR0g1BSKQOgfAzBRG0DYHARh4DeDAOwANuw8ApCKKkYg/RPhjBs" & _
"H0J4yg5hPGWN0GwFBHQBFaDoQIURljFAoB4GgzRVzbBECQFQRQoguHGHANwDRdCKy8CgSIGwhhoDYJYYI1giBICSAEgI="
.Add 4,"gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjH" & _
"LUXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKB" & _
"UrGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo" & _
"3NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDs" & _
"YYDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoV" & _
"mWCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoV" & _
"oWiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZi" & _
"Se41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbh" & _
"FCcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA=="
End With
.Background(exCheckBoxState0) = &H1000000
.Background(exCheckBoxState1) = &H2000000
.Background(exCheckBoxState2) = &H3000000
.Background(exContextMenuSelBackColor) = &H4000000
.Background(exContextMenuSelForeColor) = RGB(1,0,0)
With .Elements
With .Add("Element Check 2")
.Checked = exChecked
.Pictures = "1,2"
End With
End With
.Home
.EndUpdate
End With
|
|
74
|
ImageSize property on 16 (default) (specifies the size of control' icons)

' AddElement event - A new element has been added to the surface.
Private Sub SwimLane1_AddElement(ByVal Element As EXSWIMLANELibCtl.IElement)
' Element.ShowCheckBox = True
End Sub
With SwimLane1
.BeginUpdate
.ImageSize = 16
.Images "gBJJgBAIDAAEg4ACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjMLjABAAgjUYkUnlUrlktl0vmExmUzmk1m03nE5nU7nkrQCAntBoVDolFo1HoM/ADAplLptImdMYFOq" & _
"dSqlXq1QrVbrlGpVWsFNrNdnNjsk7pQAtNroFnt0sh8Yr9iulTuNxs1Eu8OiT/vsnsNVutXlk/oGGtVKxGLxWNtsZtN8iUYuNvy0Zvd+xNYwdwvl4p870GCqc8vOeuVt" & _
"tmp1knyOayWVy+WzN/ze1wOElenm+12WUz/Bv2/3UyyWrzeutux2GSyGP2dQ33C1ur3GD3M4zUNzHdlWjq/E3nGzVpjWv4HA7fRy/Tv2IrN8rPW6nZ3ve7mUlfu20Z8a" & _
"cvQyb+vY9jasYoDwMm+LytVBDqKG3z8O3Cb8P+mkAuY9cCQ2uL4KaxDKvkp8RNLEjqugnrwQo/UWPzFyeQw5sNLZFENrI4kOqU66pw8uzmOKvTqNqjULJvGL1JO48GtT" & _
"GsbLdEL3scxLlyiw8dQeoUVxdLTtyKmUjwGlslRPJsnK1HbAKbKCrsQo8uQk/CeP44iaR/ATnTNPLvyxPU+z9P9AUDQVBowiofJXQ6Oo+kKMpIkjztE4TKn4P6JowfgP" & _
"nwD5/nAjB8AOeAPo0eAA1IAFH07UhAIMpYAVIYFHqBUhwVjV1S1EtQAHxW65V0AZwAeuQAnwB5gAPYViEDVhwAHTQBkCjB4gOhwDmCyhH0sACAg=="
With .Elements
With .Add("Element Check 2")
.Checked = exChecked
.Pictures = "1,2"
End With
End With
.Home
.EndUpdate
End With
|
|
73
|
We want to have option to start/end connectors at the middle of each side of the elements
With SwimLane1
.BeginUpdate
.ShowLinks = exShowLinks
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
End With
.FitToClient
.EndUpdate
End With
|
|
72
|
How can I determine the position the user clicks within the element's boundaries (Click event)

' Click event - Occurs when the user presses and then releases the left mouse button over the control.
Private Sub SwimLane1_Click()
With SwimLane1
Set e = .ElementFromPoint(-1,-1)
X = -1
Y = -1
.PointToPosition X,Y
Debug.Print( e )
Debug.Print( X )
Debug.Print( Y )
End With
End Sub
With SwimLane1
.BeginUpdate
With .Elements
.Add "Element 1"
.Add "Element 2",128,64
End With
.FitToClient
.EndUpdate
End With
|
|
71
|
How can I determine the position the user clicks within the element's boundaries (MouseMove event)

' MouseMove event - Occurs when the user moves the mouse.
Private Sub SwimLane1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With SwimLane1
Set e = .ElementFromPoint(X,Y)
.PointToPosition X,Y
Debug.Print( e )
Debug.Print( X )
Debug.Print( Y )
End With
End Sub
With SwimLane1
.BeginUpdate
With .Elements
.Add "Element 1"
.Add "Element 2",128,64
End With
.FitToClient
.EndUpdate
End With
|
|
70
|
How can I convert the screen position (mouse) to surface position

' MouseMove event - Occurs when the user moves the mouse.
Private Sub SwimLane1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With SwimLane1
Debug.Print( "Point " )
Debug.Print( X )
Debug.Print( Y )
.PointToPosition X,Y
Debug.Print( "Position " )
Debug.Print( X )
Debug.Print( Y )
End With
End Sub
With SwimLane1
.BeginUpdate
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1)
End With
.FitToClient
.AxisStyle = exLinesSolid
.AxisColor = RGB(128,128,128)
.EndUpdate
End With
|
|
69
|
Is is possible to show just the positive coordinates

With SwimLane1
.BeginUpdate
.Coord = CoordEnum.exAllowPositiveOnly Or CoordEnum.exCartesian
.AxisColor = RGB(128,128,128)
.AxisStyle = LinesStyleEnum.exLinesThick Or LinesStyleEnum.exLinesDot
.ShowLinks = exShowLinks
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
End With
.FitToClient
.EndUpdate
End With
|
|
68
|
Cartesian coordinates (positive coordinates are shown top-right to the origin)

With SwimLane1
.BeginUpdate
.Coord = exCartesian
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1)
End With
.FitToClient
.EndUpdate
End With
|
|
67
|
Default coordinates (positive coordinates are shown bottom-right to the origin)

With SwimLane1
.BeginUpdate
.Coord = exDefCoord
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1)
End With
.FitToClient
.EndUpdate
End With
|
|
66
|
Is it possible to customize the path of the links orthogonally similar with Microsoft Visio tool

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Element <sha ;;0>1"
.Add "Element <sha ;;0>2",164,64
.Add "Element <sha ;;0>3",0,132
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1)
End With
.Zoom = 200
.FitToClient
.EndUpdate
End With
|
|
65
|
Does your control supports OLE Drag and Drop
' OLEDragDrop event - Occurs when a source component is dropped onto a target component when the source component determines that a drop can occur.
Private Sub SwimLane1_OLEDragDrop(ByVal Data As EXSWIMLANELibCtl.IExDataObject, Effect As Long, ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
With SwimLane1
Debug.Print( Data )
End With
End Sub
' OLEStartDrag event - Occurs when the OLEDrag method is called.
Private Sub SwimLane1_OLEStartDrag(ByVal Data As EXSWIMLANELibCtl.IExDataObject, AllowedEffects As Long)
' Data.SetData("some data to drag")
End Sub
With SwimLane1
.BeginUpdate
.OLEDropMode = exOLEDropManual
With .Pools.Add(-250,-150,500,250)
.Lane(exLaneHorizontal).Children.Count = 2
.Lane(exLaneVertical).Children.Count = 1
End With
With .Elements
With .Add("Click the Element wait for .5 second until + cursor is shown, to start <b>OLE Drag and Drop</b>")
.CaptionSingleLine = exCaptionWordWrap
.AutoSize = False
.X = -125
.Y = -105
.Width = 256
.Height = 56
End With
With .Add("Click the Element wait for .5 second until + cursor is shown, to start <b>OLE Drag and Drop</b>")
.CaptionSingleLine = exCaptionWordWrap
.AutoSize = False
.X = -125
.Width = 256
.Height = 56
End With
End With
.EndUpdate
End With
|
|
64
|
Is it possible to disable customizing the path of a specified link

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
.Color = RGB(128,128,128)
.AllowControlPoint = exNoControlPoint
End With
End With
.Zoom = 200
.FitToClient
.EndUpdate
End With
|
|
63
|
How do I let user customizes the link's path

With SwimLane1
.BeginUpdate
.AllowLinkControlPoint = &Hffffff80 Or LinkControlPointEnum.exAllowChangeTo Or LinkControlPointEnum.exAllowChangeFrom Or LinkControlPointEnum.exOrthoArrange Or LinkControlPointEnum.exMiddleControlPoint Or LinkControlPointEnum.exControlPoint Or LinkControlPointEnum.exEndControlPoint Or LinkControlPointEnum.exStartControlPoint
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",164,64
.Add "Element <sha ;;0>B",0,132
End With
With .Links
.Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
.Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
With .Add(SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(1))
.ShowLinkType = exLinkRound
.StartPos = LeftAlignment
End With
End With
.Zoom = 200
.FitToClient
.EndUpdate
End With
|
|
62
|
How can I generate a picture/image/graph from my diagram
With SwimLane1
With .Elements
.Add("Element A").ID = "A"
.Add("Element B").ID = "B"
.Add("Element C").ID = "C"
.Add("Element D").ID = "D"
.Add("Element E").ID = "E"
.Add("Element E").ID = "F"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("D")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("E")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("F")
End With
.DefArrange(exDefArrangeCompact) = False
.Arrange
var_CopyTo = .CopyTo("c:/temp/xtest.jpg")
Debug.Print( "!!!check the file c:/temp/xtest.jpg!!!" )
End With
|
|
61
|
How can I generate a picture/image/graph from my diagram
With SwimLane1
With .Elements
.Add("Element A").ID = "A"
.Add("Element B").ID = "B"
.Add("Element C").ID = "C"
.Add("Element D").ID = "D"
.Add("Element E").ID = "E"
.Add("Element E").ID = "F"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("D")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("E")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("F")
End With
.DefArrange(exDefArrangeCompact) = False
.Arrange
With CreateObject("Exontrol.Print")
.PrintExt = SwimLane1.Object
.CopyTo "c:/temp/xtest.jpg"
End With
Debug.Print( "!!!check the file c:/temp/xtest.jpg!!!" )
End With
|
|
60
|
How can I print the component
With SwimLane1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",0,76
With .Add("Element <sha ;;0>C",-76,32)
.AutoSize = False
.Height = 32
End With
With .Add("Element <sha ;;0>D",76,32)
.AutoSize = False
.Height = 32
End With
End With
With .Links
With .Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
With .Add(SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(4)
With .Add(SwimLane1.Elements.Item(4),SwimLane1.Elements.Item(3))
.StartPos = LeftAlignment
.EndPos = RightAlignment
End With
End With
With CreateObject("Exontrol.Print")
.PrintExt = SwimLane1.Object
.Preview
End With
End With
|
|
59
|
How can I show direct-links

With SwimLane1
.ShowLinksType = exLinkDirect
With .Elements
.Add("Element A").ID = "A"
.Add("Element B",128,64).ID = "B"
.Add("Element C",128,-64).ID = "C"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
End With
End With
|
|
58
|
How can I show straight-links

With SwimLane1
.ShowLinksType = exLinkStraight
With .Elements
.Add("Element A").ID = "A"
.Add("Element B",128,64).ID = "B"
.Add("Element C",128,-64).ID = "C"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
End With
End With
|
|
57
|
How can I show round-links

With SwimLane1
.ShowLinksType = exLinkRound
With .Elements
.Add("Element A").ID = "A"
.Add("Element B",128,64).ID = "B"
.Add("Element C",128,-64).ID = "C"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
End With
End With
|
|
56
|
I've tried to insert a "<br>" in the Caption property text and it just ignores it

With SwimLane1
.BeginUpdate
With .Elements
With .Add("caption")
.CaptionSingleLine = exCaptionWordWrap
.Caption = "first caption<br>second caption<br>third caption"
End With
End With
.EndUpdate
End With
|
|
55
|
How do I align the extra-caption

With SwimLane1
.BeginUpdate
With .Elements
With .Add("caption")
.CaptionAlign = exTopLeft
.AutoSize = False
.Width = 128
.Height = 64
.ExtraCaption = "extra-caption"
.ExtraCaptionAlign = exBottomRight
End With
End With
.EndUpdate
End With
|
|
54
|
How can I add an extra caption

With SwimLane1
.BeginUpdate
With .Elements
.Add("caption").ExtraCaption = "extra-caption"
End With
.EndUpdate
End With
|
|
53
|
I am using the reserve-neighbors feature, the question is how to shift left/right the neighbors instead of up/down
With SwimLane1
.BeginUpdate
.AllowMoveNeighbors = exMoveNeighborsHorizontally
.DefArrange(exDefArrangeDir) = 1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B ( move it )",16,32
.Add "Element <sha ;;0>C",128,0
End With
.EndUpdate
End With
|
|
52
|
I am using the reserve-neighbors feature, the question is if possible to specify the distance between neighbors
With SwimLane1
.BeginUpdate
.AllowMoveNeighbors = exMoveNeighborsVertically
.DefArrange(exDefArrangeDX) = 0
.DefArrange(exDefArrangeDY) = 0
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B ( move it )",0,32
.Add "Element <sha ;;0>C",0,64
End With
.EndUpdate
End With
|
|
51
|
How do I enable the reserve-neighbors feature
With SwimLane1
.BeginUpdate
.AllowMoveNeighbors = exMoveNeighborsVertically
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B ( move it )",0,32
.Add "Element <sha ;;0>C",0,64
End With
.EndUpdate
End With
|
|
50
|
I've noticed that recently, the elements get compacted once the Arrange method is performed. How can I prevent that

With SwimLane1
With .Elements
.Add("Element A").ID = "A"
.Add("Element B").ID = "B"
.Add("Element C").ID = "C"
.Add("Element D").ID = "D"
.Add("Element E").ID = "E"
.Add("Element E").ID = "F"
End With
With .Links
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("B")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("D")
.Add SwimLane1.Elements.Item("B"),SwimLane1.Elements.Item("C")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("E")
.Add SwimLane1.Elements.Item("A"),SwimLane1.Elements.Item("F")
End With
.DefArrange(exDefArrangeCompact) = False
.Arrange
End With
|
|
49
|
How can I move an element to a specified lane/phase/pool

With SwimLane1
.BeginUpdate
.DefPoolHeaderCaptionFormat(True) = "<fgcolor 808080>Faza <off -4><b><font ;6>%i"
.DefPoolHeaderCaptionFormat(False) = "<fgcolor 808080>Culoar <off -4><b><font ;6>%i"
With .Pools.Add(-100,-100,250,180)
.Lane(exLaneHorizontal).Children.Count = 3
.Lane(exLaneVertical).Children.Count = 3
.Lane(exLaneVertical).Children.Item(1).Header.Caption = "<fgcolor FF0000><b>NEW"
End With
With .Elements.Add("element 1",200,200)
.LaneID(True) = "0:H.0,0:V.0"
End With
With .Elements.Add("element 2",200,200)
.LaneID(True) = "0:H.2,0:V.2"
End With
.EndUpdate
End With
|
|
48
|
Is it possible to add a link to show from bottom/down to top/up, rather that right to left (method-2)

' AddLink event - A new link has been added to the links collection.
Private Sub SwimLane1_AddLink(ByVal Link As EXSWIMLANELibCtl.ILink)
With SwimLane1
With Link
End With
End With
End Sub
With SwimLane1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",48,48
End With
With .Links
.Add SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2)
End With
End With
|
|
47
|
Is it possible to add a link to show from bottom/down to top/up, rather that right to left (method-1)

With SwimLane1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",48,48
End With
With .Links
With .Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
.StartPos = DownAlignment
.EndPos = UpAlignment
End With
End With
End With
|
|
46
|
How do I enable the cross link support ( mixed )

With SwimLane1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",0,76
With .Add("Element <sha ;;0>C",-76,32)
.AutoSize = False
.Height = 32
End With
With .Add("Element <sha ;;0>D",76,32)
.AutoSize = False
.Height = 32
End With
End With
With .Links
With .Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
With .Add(SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(4)
With .Add(SwimLane1.Elements.Item(4),SwimLane1.Elements.Item(3))
.StartPos = LeftAlignment
.EndPos = RightAlignment
End With
End With
.ShowLinks = ShowExtendedLinksEnum.exShowCrossLinksMixt Or ShowExtendedLinksEnum.exShowExtendedLinks
End With
|
|
45
|
How do I enable the cross link support ( triangular )

With SwimLane1
With .Elements
.Add "Element <sha ;;0>A"
.Add "Element <sha ;;0>B",0,76
With .Add("Element <sha ;;0>C",-76,32)
.AutoSize = False
.Height = 32
End With
With .Add("Element <sha ;;0>D",76,32)
.AutoSize = False
.Height = 32
End With
End With
With .Links
With .Add(SwimLane1.Elements.Item(1),SwimLane1.Elements.Item(2))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
With .Add(SwimLane1.Elements.Item(2),SwimLane1.Elements.Item(1))
.StartPos = CenterAlignment
.EndPos = CenterAlignment
End With
.Add SwimLane1.Elements.Item(3),SwimLane1.Elements.Item(4)
With .Add(SwimLane1.Elements.Item(4),SwimLane1.Elements.Item(3))
.StartPos = LeftAlignment
.EndPos = RightAlignment
End With
End With
.ShowLinks = ShowExtendedLinksEnum.exShowCrossLinksTriangle Or ShowExtendedLinksEnum.exShowExtendedLinks
End With
|