104
Fullfit the caption on the element's width

with thisform.SwimLane1
	var_s = "<solidline><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;properties>+</a><br><solidline>+ balance: Currency = 0</so"
	var_s = var_s + "lidline><br>+ deposit(amount: Currency)<r><a 2;methods>+</a><br>+ withdraw(amount: Currency)"
	with .Elements.Add(var_s)
		.CaptionSingleLine = 1
		.BackColor = RGB(248,248,248)
		.AutoSize = .F.
		.Width = 194
		.Height = 76
		.CaptionAlign = 4 && 0x4
	endwith
endwith
103
Wrap the caption by <br> or "\r\n" sequence only

with thisform.SwimLane1
	var_s = "<solidline><b>Bank Account</b></solidline><br>+ owner: String <r><a 1;properties>+</a><br><solidline>+ balance: Currency = 0</so"
	var_s = var_s + "lidline><br>+ deposit(amount: Currency)<r><a 2;methods>+</a><br>+ withdraw(amount: Currency)"
	with .Elements.Add(var_s)
		.CaptionSingleLine = 1
		.BackColor = RGB(248,248,248)
	endwith
endwith
102
Display a custom tooltip
*** MouseMove event - Occurs when the user moves the mouse. ***
LPARAMETERS Button,Shift,X,Y
	with thisform.SwimLane1
		.ShowToolTip("new content","",Null,"+8","+8")
	endwith


101
Shows the tooltip of the object moved relative to its default position
*** MouseMove event - Occurs when the user moves the mouse. ***
LPARAMETERS Button,Shift,X,Y
	with thisform.SwimLane1
		.ShowToolTip("<null>","<null>",Null,"+8","+8")
	endwith

with thisform.SwimLane1
	.Elements.Add("Element with a Tooltip").ToolTip = "This is a bit of text that should be displayed when cursor hovers the element."
endwith
100
Add a pool to cover all visible-elements

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

with thisform.SwimLane1
	.AllowUndoRedo = .T.
	with .Pools.Add(-54,-47,244,112)
		l = .StartUpdatePool
		with .Lane(1)
			.Color = RGB(240,240,240)
			.Children.Count = 2
		endwith
		.EndUpdatePool(l)
	endwith
endwith
97
Rename Undo/Redo commands into the control's toolbar

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.ToolBarFormat = "-1,100,102,101,|,103,104"
	.Object.ToolBarCaption(103) = "Anuleaza <img>4</img>"
	.Object.ToolBarCaption(104) = "<img>5</img>Reface"
	.Object.ToolBarToolTip(103) = "Anuleaza ultima actiune UI. Pentru a anula o actiune apasati Ctrl+Z."
	.Object.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")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.EndUpdate
endwith
96
Add Undo/Redo commands to control's toolbar

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.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")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.EndUpdate
endwith
95
Clear Undo/Redo queue (method 2)

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	c = .UndoRedoQueueLength
	.UndoRedoQueueLength = 0
	.UndoRedoQueueLength = c
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
94
Clear Undo/Redo queue (method 1)

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.AllowUndoRedo = .T.
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
93
Removes Redo operations

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.Undo
	.RedoRemoveAction(10)
	DEBUGOUT( .RedoListAction() )
	.EndUpdate
endwith
92
Removes Undo operations

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.UndoRemoveAction(10)
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
91
Record the UI operations as a block of undo/redo operations

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.StartBlockUndoRedo
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.EndBlockUndoRedo
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
90
Groups the next to current Undo/Redo Actions in a single block

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.GroupUndoRedoActions(3)
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
89
Limits the number of entries within the Undo/Redo queue

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.UndoRedoQueueLength = 1
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
88
Lists the Redo actions that can be performed on the surface

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.Undo
	DEBUGOUT( .RedoListAction() )
	.EndUpdate
endwith
87
Lists the Undo actions that can be performed on the surface

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	DEBUGOUT( .UndoListAction() )
	.EndUpdate
endwith
86
Checks whether the Undo operation is possible

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.Undo
	DEBUGOUT( "CanRedo" )
	DEBUGOUT( .CanRedo )
	.EndUpdate
endwith
85
Call Redo by code

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

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	DEBUGOUT( "CanUndo" )
	DEBUGOUT( .CanUndo )
	.EndUpdate
endwith
83
Call Undo by code

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

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.StartBlockUndoRedo
	with .Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		h = .StartUpdateLink
		.Color = RGB(255,0,0)
		.Width = 2
		.ShowDir = .F.
		.ShowLinkType = 2
		.EndUpdateLink(h)
	endwith
	.EndBlockUndoRedo
	.EndUpdate
endwith
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. ***
LPARAMETERS Element
	*** Element.ShowCheckBox = True
	*** Element.CheckBoxAlign = 2

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	with .Elements
		.Add("Check <b>1",-64,-64)
		.Add("Check <b>2").Checked = 1
	endwith
	.StartBlockUndoRedo
	with .Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		h = .StartUpdateLink
		.Color = RGB(255,0,0)
		.Width = 2
		.ShowDir = .F.
		.ShowLinkType = 2
		.EndUpdateLink(h)
	endwith
	.EndBlockUndoRedo
	.EndUpdate
endwith
80
Save the element's properties for Undo/Redo operations, by code

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.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)
	endwith
	.EndBlockUndoRedo
	.EndUpdate
endwith
79
No color is restored for the element when Undo/Redo operation is executed

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.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)
	endwith
	.EndBlockUndoRedo
	.EndUpdate
endwith
78
How can I ensure that a specified element fits the surface's visible area

with thisform.SwimLane1
	with .Elements
		with .Add("Element A",-100).Pattern
			.Type = 6
			.Color = RGB(224,224,224)
		endwith
		.Add("Element B",2000).EnsureVisible
	endwith
endwith
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. ***
LPARAMETERS Operation
	with thisform.SwimLane1
		DEBUGOUT( "LayoutEndChanging" )
		DEBUGOUT( Operation )
	endwith

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.EndUpdate
endwith
76
Turn on the Undo/Redo feature

with thisform.SwimLane1
	.BeginUpdate
	.AllowUndoRedo = .T.
	.Pools.Add(-154,-82,244,122)
	with .Elements
		.Add("Item <b>1",-64,-64)
		.Add("Item <b>2")
	endwith
	.Links.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	.EndUpdate
endwith
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. ***
LPARAMETERS Element
	*** Element.ShowCheckBox = True

with thisform.SwimLane1
	.BeginUpdate
	.ImageSize = 32
	.Font.Size = 16
	.ContextMenuFont.Size = 16
	var_s = "gBJJgBAIDAAEg4AEEKAD/hz/EMNh8TIRNGwAjEZAEXjAojKAjMLjABhkaABAk0plUrlktl0vmExmUzmk1m03nE5nU7nk9miAoE+oVDolFo1HpFJpU5h8Sf9OqFNqUOqN"
	var_s = var_s + "UqdPq9VrFWrlbr1QpdhAFAkFis1ntFptVrtkrpszrNvmVxqk3uVtm1kmF3sdBvF/wGBmV+j9BYGHwWJulfxdax2NyFdx2JlV6l9Nw7AAGZymdz2Cy2GxErvWcz9ivlwy"
	var_s = var_s + "V21cuxugwktzGIzmvwtl0+53U5y0a0Wazmmyu/3dCyOMyXHx/J5nIr9q3uyqnBxFN3G46ma4vb7mD2Ng4nZze00fDkHC7t7us2rOX5tguetpHRlmz4HVqnXk1PjHO+CM"
	var_s = var_s + "Po9MBMC+j2vC8j7wS8cFNI4kBo05UIvfCT/NsnsApU+0Fqg/T+oy/kPxC0sEQfErKQK96+w28UWRI8UGvO8sTLS9r2PWmsMJTDTask3CsIbIEQRA3shOXEEAO/GclJ9F"
	var_s = var_s + "EKrrA8FRbKMXRIlb0JxCkjS1LMswhCcvuel0cv26cSMa8Ufx+2sQwhEUoSXOCjSbLcnxjKc7sdKUVyq28NtVI71P9P7JxtQEapjQ6fzfM8zPfNE2PhIsLL63E40slk5y"
	var_s = var_s + "7N89LcyU9SvMb3SdUc6VJLj5VLVLfO/PS9KzNFHUa/0XyBD0dxlS9cxhMlTRSoNXypPErWDPyfNS+MwprRNO0FD8wVVZ1AI08URwVRjtJ1WCn21QkkUrXVLVPQS/XIkF"
	var_s = var_s + "gTxT9iONZ9xVTdq+L1eKg3kkF6Upe68XtfV51/MtrVjBlwYFL1ev8y1/P6/lyzzYl02wntj0RVFmS1Qa+M5as93QxEUW9e993rfmQ2+vy65M/mL1lhl/2bj2ByVduMtN"
	var_s = var_s + "hCJT9hdz41nN14Ld12Z9UjfI/oUAaGseiw6+uFLLhcVabJOS5RqOE0BHlZ5VnEr5fOMs3st+aa/bbRzrJGV51Y0b0DbqaWXZD90hIsPbjWu52+6Wyadpe66hhO+P/Xio"
	var_s = var_s + "W5rD8ZbrUZuVg6n1dsE/cXmewu1m9PVwnd35/nueXho/NaJzmjc61W76esuT77eG8pTquy9TwWH8LEzG8RDfFalx3Gcfvna9rvG/cptGLd9tuI6TZOP5Fiqi99vea+X4"
	var_s = var_s + "VRcBq/JZZtVQ9cwSs5lsXE372+a9z7PbfB3VVqHyvMctLto8uob6eV0m/cD6MN2v+T33t6sBut42vdv2bJ8a997x2maFJfK+qArbGJPEKE+1qTflMsIdW/GCJX17KcT6"
	var_s = var_s + "/czr/X+u1g29B7j/4BQfWkkx4zIHisjhPCmE0K4SwtXM+d4BvHRwNZOoBph9IJvPek9d40FoMJxf691jj2ywQQcHEWET4XJwkTszlVqm2GokewxtBT1DpQjRxDN0rUVD"
	var_s = var_s + "NKdC3lb6tzNOwh6upMSSYfv4YBCl/bsn9PxiFCEo7SI6Obc9HeOrnY8x4jtHtdpN4GRbaorhsbu18Pph5CiHymI0RpSXGJ/z2oUOxYxG858AyiI+bfJtuTcG5yelBJyT"
	var_s = var_s + "8okhqFd4a5yxL0rvulYtKCsZiWxWkc1s1cRoxxwhA31DLE0mR9l9HqX8fJgTDmFMVH0MIsRzVYnwnMi1dyzmhLt2kS2pxIiU62Wj5ptQGlSYFakLonTUJNLKaM5Wzlff"
	var_s = var_s + "EkuFkk5wTrhVO2eE7G6lJhxFFYUZ55zmn0WuBCD4pzhirFCKkbomsOoIYmZx5p90LoYWGPdD5g0QmJRKYxbZ6zYoVQ2jVGylSak7KSkFH6RSjpHKFuU+YMyNo5SulkC6"
	var_s = var_s + "I0vonTCitMXPoEpVS2H5FQfEqp2R1opIgAEkJISYARTCukOhmPNI5Ex/wzGHUsicMwA1LHgQ90Y/KpoQHAD+pB/R4NzIaMAB9Xaw1gqaAOsh/A/ptIkWUfhGK1kZH8Rg"
	var_s = var_s + "H5GqvgArqRmt4AAPrTroRofBGADkqr6Rmu4D7CEaHARiwpJrEEZsXXwlVjyMWRsaRqwdkLGNBABZmytmyMnaINZqyVpLR2ftKAAAdd6h2osbaskdiq4EZtgSmyNcbVWR"
	var_s = var_s + "JNXe3AA7REar3b0stlAAXBtoRmvJGLjEYAHUWsFcwCD/rnaop9aEICMAPdK5hT6xpeuzdOtAgKuJeGfdq6ggEbkTvAP+p9UCHXrvKkcgIA=="
	.Images(var_s)
	with .VisualAppearance
		var_s1 = "gBFLBCJwBAEHhEJAAEhABfICg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6"
		var_s1 = var_s1 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM"
		var_s1 = var_s1 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsOatVqjG5sYjcGC3La9cz3Pq/bpuDCbMxuaK1TrYXr1TTrcofBDldAxXRKDxR"
		var_s1 = var_s1 + "DWVhLnYOw9i6XxzjuXprCaOoKB6EwbiCZZCGOdZYlcT4xHmbhMnwNxtn+G5bmqdZ7n4Pw/i+X5zm+dQ9g4CAFjsfAJheOI8HsDoWDWTB/lwSAQkmA5PEgRYoDyDwYFYF"
		var_s1 = var_s1 + "oFmGCBmBqBphDgRJ0gOTIYBGRB/lyRh0iSCZbjYWJzgWDwIjYLoLmMCJGDKDJjBgWgqG6YhyhGHRzA2aJ1mCABOAiOJvhCZBJBYRoRmSCQmEqEQimkAZgg8TZnDCV4Uk"
		var_s1 = var_s1 + "mCUmBKZYJGYWoWCUUhiFMNZckNUh2GENoaGaGZmgmJhqhqZpGGIEx2GYIxSGGGJdggWJth2Z4JmYeoemeSZ2H6H4hGmQhihyTRHGYLg7CiCgmgqIpokoNoOiOaJ4jqAo"
		var_s1 = var_s1 + "chqaZGgaCxpAoZoaiaaJqEmWIcGgShcnCJwqEqFoR3YOoFlgchflqNouiuawHmWSYqGkWZQhcatzmaOoumuSp2j6L5bBaKo0GQKRnGGCxqiyCwmkqMpsksNpOGUGI7A0"
		var_s1 = var_s1 + "ew1G0Rxlg0PptgsZuDG2Sx2l6N5tnYNZZjUDRXDCVo5l2FoymqOpukuNpujubwLjmWY5k0ZwxkaFxYlWdp6j6b5Lnafo/nABQdg2FxcUsY5BkmXAkmeQpckwNRrkKTh8"
		var_s1 = var_s1 + "CSHZBk4NwyC4KxxgMDwakOMZDn8GgwnGAo2C4cwthMcwmCcMoHBMHRehwTIghySYNksZwcH4HBMEsHx5hyPItiweYxnwSZEH4Mozn0fR+DMAo7EYJ50gkdZelKdNql2U"
		var_s1 = var_s1 + "gJn0GIukwH4HicQRai2GI4mSVpNl0dZGledgNgcYpYDWUx3FsOQi5YV5anaTY3G6W53A2RxylydxFjiaxEFCCgBBAQ=="
		.Add(1,var_s1)
		var_s2 = "gBFLBCJwBAEHhEJAAEhABcoFg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6"
		var_s2 = var_s2 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM"
		var_s2 = var_s2 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n"
		var_s2 = var_s2 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEokiEN5NCKfJ9DyTRjnSc"
		var_s2 = var_s2 + "g1CEYxOBmBpPCgagdgcIZoHoGIFA4AxQkCAxKAgKBwgGSpIBCZhjF2E5UnQPQMiMCJBCIBwxkSQgsgo+JtDKT4ziiQw+k6EwAnsOgLnkHI+yCQ4iEuE4klkPhShEJBpA"
		var_s2 = var_s2 + "oPgymOMoaDgHBjFMBgyD0HYTiCZSZhIIIGC4ChiHSew5kwM5omILZPiOBI0hwZw5kodIdA+M4Uj4PxOmMSJ9DuTQzmyZgviceZagaHVfj4awwmaAh2GUIYmCOEZZDaDR"
		var_s2 = var_s2 + "DFGdwcg4EwyHMN4LBOaJbCoaZqgKH8qkMfIyD8DozDyfA7A0Coui0OpMmOZJdCsahKg6NooioChwmEMxLEoXJbDUTRXGSUgykyMgQG0GpPHMdI3D4TRCgSeQ0kmaw+lG"
		var_s2 = var_s2 + "NAtCOZJVCiT5DhyRQwAqMg0EoDBBGEGAsASC5yiSCw+k4Mp6lWNQuksTpRjMTxDGzJwGmGMpDDKXYTECSAxl6Q5olkK4PgMMIVkASRMBMBgzEkaZEjsNALhIZA6AeQBg"
		var_s2 = var_s2 + "k0ZJEgAAJ0CIAgODMNIsD6DRih9uYwFyAwfCUb5ijmbI+gwdxkk8MZMGeMpPCkDxzBiC5MHMPJLDSSROFMLIoBEQogEMFJPnENYQGgE4DCOaJfC7tYkhGTQ0kyWwykuX"
		var_s2 = var_s2 + "pMiyRpKjKR4wngM4JmOWJACCdYtHMWw+Eych4nINYLAEYA8AgdAEEsQZajaQoog4GxPiMVIolcdxNG8XZVkmNoRwWRVBlFeFEeAZQJgnFiHgHwcAhjhHgGMSI5xki2Cy"
		var_s2 = var_s2 + "A4EQsA3i0HkBsLwKRFgAHcPkHopBJBcBeDUYI7xyDOHqKkWo2hLCsDIBIY4qQ5A8DoMMYwOAqCSBGKgU4yB2iDBwIgB4hxQgAAWNgBoAgsBdEcBUQ4sQ9A/HqD0JI8Rp"
		var_s2 = var_s2 + "BzH2OYVgahLBHFiJQJweQiDhDUE4SAARQAzFsG0EQwA6AOWSBkFgVAIBCHeGERQFQiCQHeFkC4vkiB8DyB4F4QxVDvGMNEOQexMjlBeOAKQiQLgfDA7QEAaRiBdEkH8T"
		var_s2 = var_s2 + "I7AZiFBAGYBIABWjYBiGACioQ4C1A+AMMgWhfgxHgPsT4URIB0COKgPgjRwiAB8AYUArxBgCF6J4GY5hrAOCAPAAoGRRCsCIMEXATXfgAF8BMJwURuEQDgD4Q4OBoAeH"
		var_s2 = var_s2 + "GFgLIwQrC2D0JoSQ+QvhrHoSgQI8AbDFGID8C4Ah6BQAQAASACwgCYCMAUMARAvCKAiAMCAokeCKBEOAKgCBoDaHuMsEAqwJDiACDURg8R6gPCyDofYWAhgoDIJ4ZAuh"
		var_s2 = var_s2 + "oiGAYGgRoQw/A0GMMga4GwxiEDeIYYInATCDBQAoBAwAoDlA0KMBoVRGiDGwDQUYIRsgaGGDgM4LAwDWB8EcIA1APhjEgGQVwgRIgjFIIQHokgZA+CSEkLIKQSjHAwMs"
		var_s2 = var_s2 + "CwDAsAEB2ABTIwRwD6A8CMToSxkAxE4HYIw+BsgbBEDAHYBwojCBoIYFgXSjABE4MsHIbQWhlGILQS4UhvBdAUKEEwHgxDAAABQQQUAhgKHiDwE4JS4A7BGLQZwCR4ga"
		var_s2 = var_s2 + "BEMUYAqgKApHgGwVAIRNgvBMMQXImwZDtE4I8UIyAZCDCAE8AwrhgAdEEBACQLRCg4FEB4AYtA7CdEiPQMoJAMDNCkOMCAXAFDhH0D0Q4EgfAaGSK4NYzRUj9BuCgAgs"
		var_s2 = var_s2 + "wOBjB4Fqpw8B2ADAwE4A4Qx2DAE6JIaQPQGhAGKBcIQ5B5gHByKIFARwADbAyKUfgdBKBBGyEcVIAB/ijHoIoSA0gdBNl+OATYERZgBGSDYWIWAUCEGKA4FAhR7CIBtY"
		var_s2 = var_s2 + "QGYZg4CMAiKEcAOwkBjHWE8Z4lQgA+DkBoTohwwCeAaMEEgBQCCABgHMRwQRhhMEWFQd4HwZgwDqFESItAbAGEANCpINAzANCCJkK4ah+heFYBURwsQrS2CsMYMoWGBh"
		var_s2 = var_s2 + "YDWI0EInQgiApXaOVI1QFDsC8MUNoMBMA1HMJga4eh+BeAWOgNNowGjYzCGAAwax+iJBeBVT4gxoBIAGFsJFBxgBiGKFkKQ7g5DFFQEcAo4AzDDACKEQQLgCiJDYB0Mg"
		var_s2 = var_s2 + "RBCCQAgQEA=="
		.Add(2,var_s2)
		var_s3 = "gBFLBCJwBAEHhEJAAEhABQ4Fg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6"
		var_s3 = var_s3 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM"
		var_s3 = var_s3 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n"
		var_s3 = var_s3 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEosiYN5NHMOJ+D4TpTnSe"
		var_s3 = var_s3 + "Q7CEY4uBmBpPhgagdgcIZoHibIEyUBJZDQIJShoCgcCAcoyAQOYYlcZJ1D0DxDCiQgwEiAZMHEMJLFKPJ9D2DoDnidQ4k+Y5QmKEROBkIhKD0JIZDIS4TGUCQuEeEJjn"
		var_s3 = var_s3 + "OIg8CuY4RkYNgwGMM5RllGpThDRYIGKZIpCkJFUH0PINyWcQ3CaaZCG+HBnEOTJhD8Tx4GoeQ/GcaZSHOH5nCmQhshoZhihYYwhiYA4RlkNoNEMUZ3ByDjwEsPxOnMaJ"
		var_s3 = var_s3 + "9DuDR6F6GYmCmKh0nANtMioP4Gg8aoSiIO5NhodociqaY6GaFYkEyOg8lsNRNTaUgykyMgQG0GpPiONJbD8DpDEyfA6k0KwOkWMQsGsAJU0SagwkoJQJDIPISCQCJTGS"
		var_s3 = var_s3 + "UwyGaM4KkmMgtksHpFjAZ4TGCBAbgaSpcksdhNAMIJHHsD5TjSWWMAMOpwjyLwbk6cAz0KRJiDkDYzESCwiggcgcgYIQwCIEINCMCITj6TVxkMXp2j0cQLlCTo7E2F4y"
		var_s3 = var_s3 + "mkMZdhMPJHDGHpLAyVg+k4UwrCCSIyByDJ8DuDY8CiWY0kiXAXC6QJwFKGIjCeJpjgyezjlyDw6klHx5myRoMGwZwbkcToTEiew4kwbQfEmUgPkOKJUD4DpTHSHQmgkX"
		var_s3 = var_s3 + "I/ASTA1g0XIEDMTBimyfI7jSLYHEiUoPk0Fw/kadAsHGao8A0A5smEMJ2mNyg5gzJZwDgCpChyIZVyIZwFCMJEPASRkBqE+IcHInRcDxA2H4bIsx0AtDsIBpwZwYicD6"
		var_s3 = var_s3 + "BscwDwUBgHCIYaIfgtiVH2O4WgUwJjEFeAEQA7y4hMCiBMS4aRdB9A4CYE4LxljyBMHcDItBxinDCLcTYmgejBFQ9UTg9gFBOEmAQTI7A4iZGMGkQAWQ7jYA2HIL8BRA"
		var_s3 = var_s3 + "jDG4HcCwARbjZHiNoDw1nLDnGyNINQ+wjCpBMEgcovQUgICQJEcgWRuBvAyJ4d4ugpCUAINcHogxIgnDiM4N4axzD3F2JMTY/hRqYF6FsWIxhYAGGoAALQYgYirBwBEB"
		var_s3 = var_s3 + "wpAjBEAAIEIYsA2gOHCMAGgXAACIDmMITAUgFABH0D0I4WwvhNFGMAOIvxRD2GKNcMA8gjAPDCPwBogRPAxA8PgRwZRICYDED8RAXQEghEAN8DIgwIBdB4JYWwMgtiQH"
		var_s3 = var_s3 + "oFQKAiRFguFKGwGQhglDsEOVwEQQRkCKBwOIHgSREDRBYHEXQcQdD7GIGARQHRxipBrMobgewDCUCADsEYWAzgMHKHQDQxxsDzA6EMfAeQHB4GQDkUYPA0iECiKoGgRh"
		var_s3 = var_s3 + "cDdA2GMQA8AOCjDSPgHI4QnApAKBICwHg1A+BcAwcYsgbjGGQNkCIgRsA6EcBEWANADjsB0B8YYzQQDIGSBcEYZBCCPEkFIHQSgkgZAwG4IwBAbAYGGAgL4Ch4g8BOCQ"
		var_s3 = var_s3 + "AA2KKC0GcAke4AAXAFCoHkDw4xbBFEcJkE4JRSiEFeJYKQVRMgJHODwX4xAgC/AsIIZAeAHDRG0HYI40RKCLEGDUI4jAghwBWIceA+whCpHMFYZYOQxglDMHMBQGxYjV"
		var_s3 = var_s3 + "HiAoBIPgfgHGwPsHYJRSB6A0IERQLhCjJHMA4OQoAoCOACLYGYSx8DpBQIMWQdRnDRH+DsE4fB3CeAmM67kAAXBFEIDYDI7wLBtEoEIfYNwjiUGGJQYQMAjCHEAO0C4z"
		var_s3 = var_s3 + "xW29CoCgfIxR9AKA6J8BgUAIhDGMIoJ40hqgwCgKETgnBhhqCGI0AIqgZhGDANQDIlBDCRGkCoJISR0g1BSKQOgfAzBRG0DYHARh4DeDAOwANuw8ApCKKkYg/RPhjBsH"
		var_s3 = var_s3 + "0J4yg5hPGWN0GwFBHQBFaDoQIURljFAoB4GgzRVzbBECQFQRQoguHGHANwDRdCKy8CgSIGwhhoDYJYYI1giBICSAEgI="
		.Add(3,var_s3)
		var_s4 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL"
		var_s4 = var_s4 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU"
		var_s4 = var_s4 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3"
		var_s4 = var_s4 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY"
		var_s4 = var_s4 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm"
		var_s4 = var_s4 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo"
		var_s4 = var_s4 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS"
		var_s4 = var_s4 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF"
		var_s4 = var_s4 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA=="
		.Add(4,var_s4)
	endwith
	.Object.Background(70) = 0x1000000
	.Object.Background(71) = 0x2000000
	.Object.Background(72) = 0x3000000
	.Object.Background(102) = 0x4000000
	.Object.Background(104) = RGB(1,0,0)
	with .Elements
		with .Add("Element Check 2")
			.Checked = 1
			.Pictures = "1,2"
		endwith
	endwith
	.Home
	.EndUpdate
endwith
74
ImageSize property on 16 (default) (specifies the size of control' icons)

*** AddElement event - A new element has been added to the surface. ***
LPARAMETERS Element
	*** Element.ShowCheckBox = True

with thisform.SwimLane1
	.BeginUpdate
	.ImageSize = 16
	var_s = "gBJJgBAIDAAEg4ACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjMLjABAAgjUYkUnlUrlktl0vmExmUzmk1m03nE5nU7nkrQCAntBoVDolFo1HoM/ADAplLptImdMYFOqd"
	var_s = var_s + "SqlXq1QrVbrlGpVWsFNrNdnNjsk7pQAtNroFnt0sh8Yr9iulTuNxs1Eu8OiT/vsnsNVutXlk/oGGtVKxGLxWNtsZtN8iUYuNvy0Zvd+xNYwdwvl4p870GCqc8vOeuVtt"
	var_s = var_s + "mp1knyOayWVy+WzN/ze1wOElenm+12WUz/Bv2/3UyyWrzeutux2GSyGP2dQ33C1ur3GD3M4zUNzHdlWjq/E3nGzVpjWv4HA7fRy/Tv2IrN8rPW6nZ3ve7mUlfu20Z8ac"
	var_s = var_s + "vQyb+vY9jasYoDwMm+LytVBDqKG3z8O3Cb8P+mkAuY9cCQ2uL4KaxDKvkp8RNLEjqugnrwQo/UWPzFyeQw5sNLZFENrI4kOqU66pw8uzmOKvTqNqjULJvGL1JO48GtTG"
	var_s = var_s + "sbLdEL3scxLlyiw8dQeoUVxdLTtyKmUjwGlslRPJsnK1HbAKbKCrsQo8uQk/CeP44iaR/ATnTNPLvyxPU+z9P9AUDQVBowiofJXQ6Oo+kKMpIkjztE4TKn4P6JowfgPn"
	var_s = var_s + "wD5/nAjB8AOeAPo0eAA1IAFH07UhAIMpYAVIYFHqBUhwVjV1S1EtQAHxW65V0AZwAeuQAnwB5gAPYViEDVhwAHTQBkCjB4gOhwDmCyhH0sACAg=="
	.Images(var_s)
	with .Elements
		with .Add("Element Check 2")
			.Checked = 1
			.Pictures = "1,2"
		endwith
	endwith
	.Home
	.EndUpdate
endwith
73
We want to have option to start/end connectors at the middle of each side of the elements
with thisform.SwimLane1
	.BeginUpdate
	.ShowLinks = -1
	with .Elements
		.Add("Element <sha ;;0>1")
		.Add("Element <sha ;;0>2",164,64)
		.Add("Element <sha ;;0>3",0,132)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(2))
	endwith
	.FitToClient
	.EndUpdate
endwith
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. ***
LPARAMETERS nop
	with thisform.SwimLane1
		e = .ElementFromPoint(-1,-1)
		X = -1
		Y = -1
		.PointToPosition(X,Y)
			DEBUGOUT( e )
		DEBUGOUT( X )
		DEBUGOUT( Y )
	endwith

with thisform.SwimLane1
	.BeginUpdate
	with .Elements
		.Add("Element 1")
		.Add("Element 2",128,64)
	endwith
	.FitToClient
	.EndUpdate
endwith
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. ***
LPARAMETERS Button,Shift,X,Y
	with thisform.SwimLane1
		e = .ElementFromPoint(X,Y)
		.PointToPosition(X,Y)
			DEBUGOUT( e )
		DEBUGOUT( X )
		DEBUGOUT( Y )
	endwith

with thisform.SwimLane1
	.BeginUpdate
	with .Elements
		.Add("Element 1")
		.Add("Element 2",128,64)
	endwith
	.FitToClient
	.EndUpdate
endwith
70
How can I convert the screen position (mouse) to surface position

*** MouseMove event - Occurs when the user moves the mouse. ***
LPARAMETERS Button,Shift,X,Y
	with thisform.SwimLane1
		DEBUGOUT( "Point " )
		DEBUGOUT( X )
		DEBUGOUT( Y )
		.PointToPosition(X,Y)
		DEBUGOUT( "Position " )
		DEBUGOUT( X )
		DEBUGOUT( Y )
	endwith

with thisform.SwimLane1
	.BeginUpdate
	with .Elements
		.Add("Element <sha ;;0>1")
		.Add("Element <sha ;;0>2",164,64)
		.Add("Element <sha ;;0>3",0,132)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(1))
	endwith
	.FitToClient
	.AxisStyle = 192
	.AxisColor = RGB(128,128,128)
	.EndUpdate
endwith
69
Is is possible to show just the positive coordinates

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

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

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

with thisform.SwimLane1
	.BeginUpdate
	.AllowLinkControlPoint = 31 && 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)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(1))
	endwith
	.Zoom = 200
	.FitToClient
	.EndUpdate
endwith
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. ***
LPARAMETERS Data,Effect,Button,Shift,X,Y
	with thisform.SwimLane1
		DEBUGOUT( Data )
	endwith

*** OLEStartDrag event - Occurs when the OLEDrag method is called. ***
LPARAMETERS Data,AllowedEffects
	*** Data.SetData("some data to drag")

with thisform.SwimLane1
	.BeginUpdate
	.OLEDropMode = 1
	with .Pools.Add(-250,-150,500,250)
		.Lane(0).Children.Count = 2
		.Lane(1).Children.Count = 1
	endwith
	with .Elements
		with .Add("Click the Element wait for .5 second until + cursor is shown, to start <b>OLE Drag and Drop</b>")
			.CaptionSingleLine = .F.
			.AutoSize = .F.
			.X = -125
			.Y = -105
			.Width = 256
			.Height = 56
		endwith
		with .Add("Click the Element wait for .5 second until + cursor is shown, to start <b>OLE Drag and Drop</b>")
			.CaptionSingleLine = .F.
			.AutoSize = .F.
			.X = -125
			.Width = 256
			.Height = 56
		endwith
	endwith
	.EndUpdate
endwith
64
Is it possible to disable customizing the path of a specified link

with thisform.SwimLane1
	.BeginUpdate
	.AllowLinkControlPoint = -1 && 0xffffffe0 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)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
		with .Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(1))
			.ShowLinkType = 3
			.StartPos = 0
			.Color = RGB(128,128,128)
			.AllowControlPoint = 0
		endwith
	endwith
	.Zoom = 200
	.FitToClient
	.EndUpdate
endwith
63
How do I let user customizes the link's path

with thisform.SwimLane1
	.BeginUpdate
	.AllowLinkControlPoint = -1 && 0xffffffe0 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)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(2)).CustomPath = "0.5,0.25,0.5,.75"
		with .Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(1))
			.ShowLinkType = 3
			.StartPos = 0
		endwith
	endwith
	.Zoom = 200
	.FitToClient
	.EndUpdate
endwith
62
How can I generate a picture/image/graph from my diagram
with thisform.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"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("E"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("F"))
	endwith
	.Object.DefArrange(4) = .F.
	.Arrange()
	var_CopyTo = .CopyTo("c:/temp/xtest.jpg")
	DEBUGOUT( "!!!check the file c:/temp/xtest.jpg!!!" )
endwith
61
How can I generate a picture/image/graph from my diagram
with thisform.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"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("E"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("F"))
	endwith
	.Object.DefArrange(4) = .F.
	.Arrange()
	with CreateObject("Exontrol.Print")
		.PrintExt = thisform.SwimLane1.Object
		.CopyTo("c:/temp/xtest.jpg")
	endwith
	DEBUGOUT( "!!!check the file c:/temp/xtest.jpg!!!" )
endwith
60
How can I print the component
with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",0,76)
		with .Add("Element <sha ;;0>C",-76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
		with .Add("Element <sha ;;0>D",76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 1
			.EndPos = 1
		endwith
		with .Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(1))
			.StartPos = 1
			.EndPos = 1
		endwith
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(4))
		with .Add(thisform.SwimLane1.Elements.Item(4),thisform.SwimLane1.Elements.Item(3))
			.StartPos = 0
			.EndPos = 2
		endwith
	endwith
	with CreateObject("Exontrol.Print")
		.PrintExt = thisform.SwimLane1.Object
		.Preview
	endwith
endwith
59
How can I show direct-links

with thisform.SwimLane1
	.ShowLinksType = 1
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B",128,64).ID = "B"
		.Add("Element C",128,-64).ID = "C"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
	endwith
endwith
58
How can I show straight-links

with thisform.SwimLane1
	.ShowLinksType = 2
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B",128,64).ID = "B"
		.Add("Element C",128,-64).ID = "C"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
	endwith
endwith
57
How can I show round-links

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

with thisform.SwimLane1
	.BeginUpdate
	with .Elements
		with .Add("caption")
			.CaptionSingleLine = .F.
			.Caption = "first caption<br>second caption<br>third caption"
		endwith
	endwith
	.EndUpdate
endwith
55
How do I align the extra-caption

with thisform.SwimLane1
	.BeginUpdate
	with .Elements
		with .Add("caption")
			.CaptionAlign = 0
			.AutoSize = .F.
			.Width = 128
			.Height = 64
			.ExtraCaption = "extra-caption"
			.ExtraCaptionAlign = 34
		endwith
	endwith
	.EndUpdate
endwith
54
How can I add an extra caption

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

with thisform.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"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("E"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("F"))
	endwith
	.Object.DefArrange(4) = .F.
	.Arrange()
endwith
49
How can I move an element to a specified lane/phase/pool

with thisform.SwimLane1
	.BeginUpdate
	.Object.DefPoolHeaderCaptionFormat(1) = "<fgcolor 808080>Faza <off -4><b><font ;6>%i"
	.Object.DefPoolHeaderCaptionFormat(0) = "<fgcolor 808080>Culoar <off -4><b><font ;6>%i"
	with .Pools.Add(-100,-100,250,180)
		.Lane(0).Children.Count = 3
		.Lane(1).Children.Count = 3
		.Lane(1).Children.Item(1).Header.Caption = "<fgcolor FF0000><b>NEW"
	endwith
	with .Elements.Add("element 1",200,200)
		.LaneID(1) = "0:H.0,0:V.0"
	endwith
	with .Elements.Add("element 2",200,200)
		.LaneID(1) = "0:H.2,0:V.2"
	endwith
	.EndUpdate
endwith
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. ***
LPARAMETERS Link
	with thisform.SwimLane1
		with Link
		endwith
	endwith

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",48,48)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	endwith
endwith
47
Is it possible to add a link to show from bottom/down to top/up, rather that right to left (method-1)

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",48,48)
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 4
			.EndPos = 3
		endwith
	endwith
endwith
46
How do I enable the cross link support ( mixed )

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",0,76)
		with .Add("Element <sha ;;0>C",-76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
		with .Add("Element <sha ;;0>D",76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 1
			.EndPos = 1
		endwith
		with .Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(1))
			.StartPos = 1
			.EndPos = 1
		endwith
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(4))
		with .Add(thisform.SwimLane1.Elements.Item(4),thisform.SwimLane1.Elements.Item(3))
			.StartPos = 0
			.EndPos = 2
		endwith
	endwith
	.ShowLinks = 97 && ShowExtendedLinksEnum.exShowCrossLinksMixt Or ShowExtendedLinksEnum.exShowExtendedLinks
endwith
45
How do I enable the cross link support ( triangular )

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",0,76)
		with .Add("Element <sha ;;0>C",-76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
		with .Add("Element <sha ;;0>D",76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 1
			.EndPos = 1
		endwith
		with .Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(1))
			.StartPos = 1
			.EndPos = 1
		endwith
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(4))
		with .Add(thisform.SwimLane1.Elements.Item(4),thisform.SwimLane1.Elements.Item(3))
			.StartPos = 0
			.EndPos = 2
		endwith
	endwith
	.ShowLinks = 65 && ShowExtendedLinksEnum.exShowCrossLinksTriangle Or ShowExtendedLinksEnum.exShowExtendedLinks
endwith
44
How do I enable the cross link support ( rectangular )

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",0,76)
		with .Add("Element <sha ;;0>C",-76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
		with .Add("Element <sha ;;0>D",76,32)
			.AutoSize = .F.
			.Height = 32
		endwith
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 1
			.EndPos = 1
		endwith
		with .Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(1))
			.StartPos = 1
			.EndPos = 1
		endwith
		.Add(thisform.SwimLane1.Elements.Item(3),thisform.SwimLane1.Elements.Item(4))
		with .Add(thisform.SwimLane1.Elements.Item(4),thisform.SwimLane1.Elements.Item(3))
			.StartPos = 0
			.EndPos = 2
		endwith
	endwith
	.ShowLinks = 33 && ShowExtendedLinksEnum.exShowCrossLinksRect Or ShowExtendedLinksEnum.exShowExtendedLinks
endwith
43
How do I show a link frmo bottom to top, or reverse, not from left to right

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",0,64)
	endwith
	with .Links
		with .Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
			.StartPos = 1
			.EndPos = 1
		endwith
	endwith
endwith
42
Is it possible to control the links, so that they are always centered

with thisform.SwimLane1
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B").ID = "B"
		.Add("Element C").ID = "C"
		.Add("Element D").ID = "D"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
	endwith
	.ShowLinks = -1
	.Object.DefArrange(0) = 1
	.Arrange()
endwith
41
What options to align the elements do I have if I use Arrange method

with thisform.SwimLane1
	.BeginUpdate
	.ShowGridLines = .T.
	with .Elements
		h1 = .Add("Top Alignment").ID
		.Add("Element")
		.Add("Element")
		.Add("Element")
		h2 = .Add("Center Alignment",Null,96).ID
		.Add("Element",Null,96)
		.Add("Element",Null,96)
		.Add("Element",Null,96)
		h3 = .Add("Bottom Alignment",Null,178).ID
		.Add("Element",Null,192)
		.Add("Element",Null,192)
		.Add("Element",Null,192)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(3))
		.Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(4))
		.Add(thisform.SwimLane1.Elements.Item(2),thisform.SwimLane1.Elements.Item(3))
		.Add(thisform.SwimLane1.Elements.Item(5),thisform.SwimLane1.Elements.Item(6))
		.Add(thisform.SwimLane1.Elements.Item(5),thisform.SwimLane1.Elements.Item(7))
		.Add(thisform.SwimLane1.Elements.Item(6),thisform.SwimLane1.Elements.Item(8))
		.Add(thisform.SwimLane1.Elements.Item(6),thisform.SwimLane1.Elements.Item(7))
		.Add(thisform.SwimLane1.Elements.Item(9),thisform.SwimLane1.Elements.Item(10))
		.Add(thisform.SwimLane1.Elements.Item(9),thisform.SwimLane1.Elements.Item(11))
		.Add(thisform.SwimLane1.Elements.Item(10),thisform.SwimLane1.Elements.Item(12))
		.Add(thisform.SwimLane1.Elements.Item(10),thisform.SwimLane1.Elements.Item(11))
	endwith
	.Object.DefArrange(3) = 0
	.Arrange(h1)
	.Object.DefArrange(3) = 1
	.Arrange(h2)
	.Object.DefArrange(3) = 2
	.Arrange(h3)
	.EndUpdate
endwith
40
Is there an auto-arrange feature that will display the flow-chart centered and zoomed correctly after we are finished building it

with thisform.SwimLane1
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B").ID = "B"
		.Add("Element C").ID = "C"
		.Add("Element D").ID = "D"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
	endwith
	.Arrange()
endwith
39
Is it possible to change the distance between elements, when calling the Arrange method

with thisform.SwimLane1
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B").ID = "B"
		.Add("Element C").ID = "C"
		.Add("Element D").ID = "D"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
	endwith
	.Object.DefArrange(1) = 0
	.Object.DefArrange(2) = 0
	.Arrange()
endwith
38
How do I organize vertically the elements

with thisform.SwimLane1
	with .Elements
		.Add("Element A").ID = "A"
		.Add("Element B").ID = "B"
		.Add("Element C").ID = "C"
		.Add("Element D").ID = "D"
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("B"))
		.Add(thisform.SwimLane1.Elements.Item("A"),thisform.SwimLane1.Elements.Item("C"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("D"))
		.Add(thisform.SwimLane1.Elements.Item("B"),thisform.SwimLane1.Elements.Item("C"))
	endwith
	.ShowLinksType = 2
	.Object.DefArrange(0) = 1
	.Arrange()
endwith
37
How can I add programatically a link

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",96,24)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	endwith
endwith
36
How do I get the link from the cursor
*** MouseMove event - Occurs when the user moves the mouse. ***
LPARAMETERS Button,Shift,X,Y
	with thisform.SwimLane1
		l = .LinkFromPoint(-1,-1)
		DEBUGOUT( l )
	endwith

with thisform.SwimLane1
	with .Elements
		.Add("Element <sha ;;0>A")
		.Add("Element <sha ;;0>B",96,24)
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(2))
	endwith
endwith
35
Is there a way to create a link which has the same start and end element

with thisform.SwimLane1
	with .Elements
		.Add("Element")
	endwith
	with .Links
		.Add(thisform.SwimLane1.Elements.Item(1),thisform.SwimLane1.Elements.Item(1))
	endwith
endwith
34
How can I show the pool's caption not-rotated or mirrored

with thisform.SwimLane1
	.BeginUpdate
	.AllowDesignHeader = 4
	with .Pools.Add(-150,-150,300,150)
		.HeaderCaptionSupportRotate = .F.
		.HeaderSize(0) = 48
		.HeaderSize(2) = 48
		.Lane(0).Children.Count = 3
	endwith
	.EndUpdate
endwith
33
How can I prevent creating sub-lanes or sub-phases

with thisform.SwimLane1
	.BeginUpdate
	.AllowDesignHeader = 4
	with .Pools.Add(-150,-150,300,150)
		.HeaderSize(0) = 32
		.HeaderSize(2) = 32
		.Lane(0).Children.Count = 3
	endwith
	.EndUpdate
endwith
32
How do I show a complete frame/border around the header

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-150,-150,300,150)
		.HeaderSize(1) = 32
		.HeaderSize(3) = 32
		with .Lane(1).Children
			.Count = 3
			.Item(1).Header.Pattern.Type = 768
		endwith
	endwith
	.EndUpdate
endwith
31
How do I show a complete frame/border around the lane

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-150,-150,300,150)
		.HeaderSize(1) = 32
		.HeaderSize(3) = 32
		with .Lane(1).Children
			.Count = 3
			.Item(1).Pattern.Type = 768
		endwith
	endwith
	.EndUpdate
endwith
30
How can I define sub-lanes

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-150,-150,300,250)
		.HeaderSize(1) = 32
		.HeaderSize(3) = 32
		with .Lane(1).Children
			.Count = 3
			.Item(1).Children.Count = 2
		endwith
	endwith
	.EndUpdate
endwith
29
How can I add default lanes when the user creates a new pool
*** AddPool event - A new pool has been added to the surface. ***
LPARAMETERS Pool
	*** Pool.HeaderSize(1) = 24
	*** Pool.HeaderVisible(0) = False
	*** Pool.HeaderVisible(1) = True
	*** Pool.HeaderVisible(2) = False
	*** Pool.HeaderVisible(3) = False
	*** Pool.Lane(1).Children.Count = 2

with thisform.SwimLane1
	.BeginUpdate
	.Pools.Add(-100,-100,250,250)
	.EndUpdate
endwith
28
How do I prevent showing headers when the user creates new pools

*** AddPool event - A new pool has been added to the surface. ***
LPARAMETERS Pool
	with thisform.SwimLane1
		with Pool
		endwith
	endwith

with thisform.SwimLane1
	.BeginUpdate
	.Pools.Add(-100,-100,250,250).Lane(0).Children.Count = 3
	.EndUpdate
endwith
27
How can I display icons on headers

with thisform.SwimLane1
	.BeginUpdate
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql"
	var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0"
	var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Images(var_s)
	with .Pools.Add(-100,-100,250,250)
		.HeaderVisible(0) = .F.
		.HeaderVisible(2) = .F.
		.HeaderVisible(3) = .F.
		.HeaderSize(1) = 24
		with .Lane(1).Children
			.Count = 3
			.Item(0).Header.Caption = "<img>1</img> A"
			.Item(1).Header.Caption = "<img>2</img> B"
			.Item(2).Header.Caption = "<img>3</img> C"
		endwith
	endwith
	.EndUpdate
endwith
26
How do I change the Lane and Phase strings being displayed on the lanes

with thisform.SwimLane1
	.BeginUpdate
	.Object.DefPoolHeaderCaptionFormat(1) = "<fgcolor 808080>Faza <off -4><b><font ;6>%i"
	.Object.DefPoolHeaderCaptionFormat(0) = "<fgcolor 808080>Culoar <off -4><b><font ;6>%i"
	with .Pools.Add(-100,-100,250,250)
		.Lane(0).Children.Count = 3
		.Lane(1).Children.Count = 3
		.Lane(1).Children.Item(1).Header.Caption = "<fgcolor FF0000><b>NEW"
	endwith
	.EndUpdate
endwith
25
How can I enlarge the node while AutoSize property is True (method 2)

with thisform.SwimLane1
	.Object.Background(90) = RGB(255,255,255)
	with .Elements.Add("Element",0,0).Copy()
		.Caption = "Enlarged Element"
		.InflateSize = 16
	endwith
endwith
24
How can I enlarge the node while AutoSize property is True (method 1)

with thisform.SwimLane1
	.Object.Background(90) = RGB(255,255,255)
	with .Elements.Add("Element",0,0).Copy()
		.Caption = "Enlarged Element"
		.Padding(-1) = 16
	endwith
endwith
23
How can I get the lane of the element

with thisform.SwimLane1
	.BeginUpdate
	.Pools.Add(-150,-150,500,250).Lane(0).Children.Count = 3
	with .Elements.Add("Element")
		.CenterOnLane(.F.)
		lane = .LaneID(.F.)
		DEBUGOUT( thisform.SwimLane1.LaneByID(lane).Header.Caption )
	endwith
	.EndUpdate
endwith
22
How can I define a different shape for elements

*** AddElement event - A new element has been added to the surface. ***
LPARAMETERS Element
	with thisform.SwimLane1
		with Element
		endwith
	endwith

with thisform.SwimLane1
	.BeginUpdate
	with .VisualAppearance
		var_s = "gBFLBCJwBAEHhEJAAChABAQDg6AADACAxRDQNABQKAAzQFAYahuHKGAAGEaBYgmFgAQhFcZQSKUOQTDKMIziYBYJhEMQwDiAUIjIK8IhkGIcZAGIBJCjWGodQLOEgwHI"
		var_s = var_s + "ERQjEyUJAGGYqEjaO41SpAdI0PCxUScACnDQiegJRgmQ4cTJSchSAKENx1JaeYReewwAqNd5TRwNIiydZUIhqGC1YRte4ZWiCWoJVzSVDLfbgAT4X60IIlCi5Mi6MIgD"
		var_s = var_s + "ZJFDUNLUdRBMKNJ7qagaWoWOaQRbmAQQTRYLQ/TiEXZDQRAAyLJIWVRQWTAAKVbw1LiEcznGCcejzIIDaZpOh4DplWzTOgALjta4IRpvNwAbIAF4gBqsLyXXLcdQyORM"
		var_s = var_s + "iwbxZgSDhgnQbJFC6F5JhECA8CADwIgMeQnmoQJlh0eAfGcXYZjwccOHiWx/moAJ6jed4DC2dJnnmQRxBcKABBoWAcHULZLHyV4mmGOx0FmdpZAMAgQhEQBpBiRxBlQc"
		var_s = var_s + "gZFUdAMEYAxQDECBNgaUYglkCQKBGZANk0QgBgQXAQgcGI0FwJAHA6WI+DGDAjCiVg0g2Yw4mYNg7E0eJ1H+DpkAiYhBg6JApBYRMvDkJhGhKJIImEA4QledZ8H+FJlE"
		var_s = var_s + "EQhWBAJa8loRoCgkdhYBAExZHQKIXmUYRCFQI5mgWfZ4hMJpJC4boTGcCY0m0QJVBAIh2EIZZ5H4VIVAqeZ1H8M5oAmSg7g8TR1n4fQrmUQZCgqF5eEmYhYBgKQJiCD4"
		var_s = var_s + "PmaegKhWJZnAQDZkhqaYKFocYnGadZ8h+KJoiGQhfEIURAmKEAYAgeo1H8OZrAoeoyhGKYngaHInmuCpOjmKAkHMHo+iiSZxmKQoXkGCwWigRQlnqLh7jKSh7DYUYzm0"
		var_s = var_s + "CgAk+DIrFCAo3i6LYKnKWYuk6Wp4keKIqDsLh7BYLhJmaZo5mcYAijAOZtFsXpajubZLG6co8CSShtnYeJrGeVpzjwbxLnafI/mcK5ZnmPgtGuap+j6cIMB8CocDAK43"
		var_s = var_s + "AaQAwjwJwQkSaZsDcBI7jETBHBqRhxkibwWkCMQsgcG5Ii2TB+nkN5yEyJwjkqcJMh8DpKDKTIrB2TBmnyGwFkwMw8mcMpOmQbJbBiTwziyUxBDsc5sD8QJRnQKprEWT"
		var_s = var_s + "g0g0DxNlKMpsF8RpSHUTQ7BuUp0n0VxZi4MxrDSJ40DYDYHGKWJ2E2FxmyADYnGqMRBgeYh0FOLh9kccpcncJsVw7RdjvA2M4eovRmCSFkMwQIoAQEBA"
		.Add(1,var_s)
		var_s1 = "gBFLBCJwBAEHhEJAAChABAIDg6AADACAxRDQNABQKAAzQFAYaBmG6GAAGEaBYgmFgAQhFcZQSKUOQTDKMIziYBYJhEMQ1DAAUIjKLMIhmGAYJAGIBJCjWGodQLOEgwHI"
		var_s1 = var_s1 + "ERQjEyUpIyVAkYw5HqNaQjICoJoSOwAU47IaCIAFJSpCygKKgSjhRpoAAyU5IUgVPC4XSbD6zYDqapaTheEQyDSJNr3DCMUTlFYYLrmaQKMhqZJhWjbFSWXUpJ4pSrLM"
		var_s1 = var_s1 + "IyfTwZRJGzIK7jabLIjaP6GUDhVaYbRUL46CiEb5AAJsVpCCZrYRJOYVdQeDYbQCNLDhHQIDqaA6kZRAdQ2bpMBznPSvbovDgLWhGYqhbLCNibRC+d4HNrCYIlCjpMw3"
		var_s1 = var_s1 + "CYGIOHOMRsm0OxFjSZppneHQNFcSwRAOaprjqY4dgYe4VgGWwADucRuHYCpdByYROH8AAOC8D4NgEXwYBWEZyGAWoHg2MRCECBAkFAGhGDGUB1ByBhQkUIAPgCRAMEIE"
		var_s1 = var_s1 + "xhIuNhCEKBAlnAcwQgAYQXAIIRWEUFwJAGQ42CiCoihiLgugsYwDjSZ4MkICJWCaDZjgiZg6EIQQInSV4PmKeIyEKEBkBQDhEgwZBzjSd4SlEQJgk+E5khkRhIhSZA5F"
		var_s1 = var_s1 + "IUoVGWCQkl+FpkliTJnhXSYaFaGJOlEIhmC2ZoJgIZIaiWGYuG62IpDyT4TGSM5eGyCpmCnPIcCeQg+H6HZmnoAh6iAaBDjSL4hkUCgmgKHhlHmeIPh8BwKAqEohGkOg"
		var_s1 = var_s1 + "OHCI4pAmMoMhUKByj6CQUCkWoGhSKJpGkJoQiOJR6G4cYTmcSQuiKKRqEqPovhmBIJiCN4YEACQGFsN5lliToyiwbAKkKQoSGcWQ2HKERrhiJJvjLUR8leL5sDsBpQiU"
		var_s1 = var_s1 + "ZZpDaO4eAACZWh+LYtDsSpejQbmJnIEAuEsLJvECRgLiSH46m2W4Gl+OxpFqWo0ECSR7lQaI9m8C4+nqO4uAIHp+B4MAJmcAAeC+YgenmPwwHwHInkKRYMDaWIQGmeh3"
		var_s1 = var_s1 + "AmPpxDsCJHkWbhBAIdZDmMGZXBmRZMHwVwikUIwam0MAMC4awiEmOYyHsXwkkIMp5jMLBMDKaRiiqEBsmkNwpkwc5MyiHRrEKfxCiobIaFsQgvmsTBvD2SJuAwNBYkKS"
		var_s1 = var_s1 + "h6GsRYbDUDQ7EyVZmEwDwFiKdQ6BQf5XnYDRjD6IIujIfppBgKRcl6BZZnYXYLBWLYpn0KpglqLAtAIZoOneBsZw9RJjnQ+AYQAgCAg="
		.Add(2,var_s1)
		var_s2 = "gBFLBCJwBAEHhEJAAChABQsMACAADACAxRDQNABQKAAzQFAYawLBgABhGUZoJhUAIIRZGMIjFDcEwxC6NIpAWCYQgUNQCQiNAzxAKQchhD4ZAIkGY4ZhyA42SBAcbyDC"
		var_s2 = var_s2 + "EShoGqPRhmCg5UjmM4oQLSFDULC0fSBBIYaSGEY5QoqIYfArGQYQTRUPyUdoOBIACwLChWLA1CTZdowSKoYTXBq3IgqerIapmSYaV7YNh3VY1IR/JSVJYlaYJDoyNI4T"
		var_s2 = var_s2 + "hHc5xVLtfSfAiiJrxOKcTAAFJ0QKFUbRUz+OgBTpvaZxagaSpSG5WRpWEI5PAdN4zTa7YDsS67FiSG5oWpEFq2eAGdzlVLMMqhG5gAxqNKzbLfMCXfJIbyrBIcYLoXIt"
		var_s2 = var_s2 + "CqFYskMTwxlgAY+haFZRlQZQ4HwHR3AoMx5jEch2lMfZGl8eY+jYXBvBsAAHFeRQDmuRR8nsSI2CoEgIEIRQBiQYwdAcUZIGUUIQhGGAGECRAhDYChGFERAMCgQheEcG"
		var_s2 = var_s2 + "QgHkEAwkICx2BCFoAj+B5iAiBgigiYhIgid4JkIQBwm2ChijiKgsguYpokYLYMmKQIiDYDgjgEAg6g6Y5InYPoPmOIAiEKEJFgkFIvhGYwIlIMoSTmAhOGgJJJC4UoSi"
		var_s2 = var_s2 + "USIcncKZlp8WoOAOAxeF6FBlEkNhPGcZgJhYU4ZiMMweGoDAmkGfhuhWJoJDgIIUCYeZWGGHYkhkWhuB+ZYhEIcIUmcKZSHeIJmgoFgyCeaIBgKCoYCgGYSHiI5oEoQg"
		var_s2 = var_s2 + "siKBgKCCH4SOAfoGiQaZKPmJ5jGCIJniiZgpk6DonGkKomgOHpnjqFoCiaawKioSYXg0eoGi6KZrBqIo6hgEIal6GosiwCpuDIBgsEqDJniYa4bVuFYkDqepKjCLQJii"
		var_s2 = var_s2 + "R4XCyawGk+JpGgsZIXjabRbEKV4disSYwDCH5OlsIpWjmaA5HKUomCYOp+l6OgkhoUoWiMLpbH6bw7G0KRynOHYuGuXobhWB4MAaaoaimO52naB4hnkYInhERYLBAGAh"
		var_s2 = var_s2 + "nECw+H2BwhkmSg7kMMIqHyb49hAECAg="
		.Add(3,var_s2)
		var_s3 = "gBFLBCJwBAEHhEJAAChABOIDg6AADACAxRDQNABQKAAzQFAYaBqGCGAAGEZRSgmFgAQhFcZQTCsBw7DCEYxjOAwFgmEQxDIOIBQSKYcwiGQaRrkIYgEiONoaR7HchSFI"
		var_s3 = var_s3 + "cIxPFKRBhkKYocjyG5GRoBcIyXAcRSYAB2Q4ESoKShePw5UDTcCzHR8RxEDKNRLpOQbDgOUZTWbVUaDKIsXzZCKHbZhG4YRp6CZKRpYEB1bYtKTRKqLKrpeTbOoSHolT"
		var_s3 = var_s3 + "biIATTYlG4THyEZQrDIaDjOSIXZaGFzwSDWGgBJ60bRwHIaAxGWoHRxfEZVfBONQHMSBc5xa64JyHAImWrcUbWfaYYZ0AC6MRkK8cXABPQANixKZsCizE4DDbTYzjRhe"
		var_s3 = var_s3 + "C2F4nnEOJRG0BRXEWOICEocByiyCJTiQOJVGYIQ8gofpDgsG5uF+ah6D2Xp+GGP5gkCfwRHofwOnuSB2heVpZnIUZQhAIQJBQBoRgwdAdEcIYVEIQhGGAMQDBCBJYEUG"
		var_s3 = var_s3 + "gNhCEMcHsXIkCIAAMIILQWAkAZDjYJIJiIWIeCqCRMHiNI/guYwIkYMoMmMSJWDaDZjgiTIzg6Yo4iIPoPGIdAmECChiFKXhGAQJIAmISgQCSSQ2E6E5lAkRhShSZRJF"
		var_s3 = var_s3 + "QOoVkCaRkAqFpQhIPhehCY54hYQoRCOYo+GaExOnmJhghqZhJjIYYbmaaJ0l+HJkiCYgtDGY5RkIegfmeSY6GOD4MnoBh1D2aBJkYbYhmcCgigaIhOloEJ3h0aATD4bg"
		var_s3 = var_s3 + "WCkQoehaGAnniHhNgwKI6HaConmiSYCF4I5niGQoLDmaoAiKKoaE6eJ2H+HZnFoeohigKwqCwGItmqA4ejIHgrkIHo+iuEA4h6PGMmIHo1i0LIKk6SoMCSWwcm2LAkis"
		var_s3 = var_s3 + "AAAgmQgLFYcw3myaxmkmG4GgsdIXjebYjjaVQIC0eQFAONADguBpqjaaIKlwGIuG4GwOkWOYAAqDoljqbIrmIJ41m4O5iGYK5FAwBp0ikag7mqbI+GoCwyEyPgpBCQwO"
		var_s3 = var_s3 + "j0KRBGKFgpnAbAjXWMQ8EaeIuG6a5SHWHZxFyBoIjEbA8FQCJJmiZAmmOORwHyCwXgkbwqn8LYoDKOZNAmJpinyOzTm8aZrBWH5QhGAxCCedBMm8L5Fi+fAEFCPgvksV"
		var_s3 = var_s3 + "p0h8NQBn8RpLi7NQKBALxLHyF43EaDRPDOMoxkqXp4kYaRLlMTQIDWbQeguR5iluBxCBgNBCH6dIJnaSZjF+LQZgGQSh5DOFEa4dQsi5GILsaA8ReBuHoEYZ4ZwkDFFw"
		var_s3 = var_s3 + "JEYo2grjcHOFUAoFA7gJFqFEDYrQyilC+PwNgyRBBLH4C8FIzxiD8CeBYEgUQ9CtAiEwYgtQyDqDWPUTjBhXBrCmAcKoJQ6iGF6DEMA8BpieA4BgMQdxDg9GSOkLQgRC"
		var_s3 = var_s3 + "jhHiDMV4Ewfh3AoGULIiBujRAuJ0c4+gEi4ASOkRAfhWgjCKKEFACCAg"
		.Add(4,var_s3)
		var_s4 = "gBFLBCJwBAEHhEJAAChABGgDg6AADACAxRDQNABQKAAzQFAYZBwGiGAAGEaRWgmFgAQhFcZQSKUOQTDKMIziYBYJAKCQ3DTJUBjIKcIhiGsgAzAJIUaw1DqGY7nKZoRi"
		var_s4 = var_s4 + "oAIoSAMM7DCKUQSLGyQZqBSCQGjsAI+OyHAiABSNJwtHygIRoKqqHg2PoiSAEUZhdRlHShKSqLQiaIRSDUJZsW5EIyjBZ8EznOqbJApOKrCgOTYaWbUdSxPTEUwTFiXJ"
		var_s4 = var_s4 + "gmKRKIoiOAAY7IEgSFLsThrIKha5yDI4bxyAwXQjeYABbY0E4HQarcqzCrKGp/HYJXyAGgQHYkB5JAaQMBtGpoJrCeKQXDdVyXFwdET1BLZQA2HeUTTRVCScqnaTMZh8"
		var_s4 = var_s4 + "DgGxniKfYbngAxFkmVJAnSdougwDhRlMGZ1GEPR9HQapDGWWhyCMe4ugQDx9naYRvm6cQfAUJ47m8cofBYAZOGCHg2mETgCBCERAGkGJHEGVByBkUwUCSIgChAMQIE2B"
		var_s4 = var_s4 + "JRiQVQDAoEIWlWIxOgGBBcGyBQYlQXAkAcDpYh4KYKCKKI2CyC5ijONJvgySZ4lQWINkKCJmCWDpjkQaJPg+UA4joMYQiQI4eEYHAkgAYhKBgJJCh43JlAkEgwhSJA5E"
		var_s4 = var_s4 + "4VoVE6UQCFoL5lkkBhXhUCR5gYOQKAieYUneGZlEmJhfhqZYJFIWgQCWQp+F6GxigmHJ3BoJ4JmYMw7maKZSH6HxoAiQhvhwZ1VHYFAogmBIXiAZ55jKDIQgeChGG+G5"
		var_s4 = var_s4 + "BAoVJHiWaBYkIecznoOoeiMZYCj6IoYmcGhckeCophONoKh4aZagKLYrGkEZggeLJkCmThGDmZg5m6L4nmuOoCHaGJNnsBooAAIopCAcIZEiep2kqLwpnqCIviIBQLA4"
		var_s4 = var_s4 + "dolEECZakuK4sksYhYAgLZLOsQJLHuBBIjibR7haWYfGwawhAOJpmBuGpajuJRJkYbxAmgORynCOZvgqApejcAgIG4OYUA0e5em+PhokQXhKAYKx8AsCo+FEcJDA6D5M"
		var_s4 = var_s4 + "nwLwDkTWJulQQJuDEIphC2cQsHYbJEDCYJBAOLBrDIHwekUMBIiITgpmMcRhAOKYDgyRwnkyYwMjcK4cnAfAnCmSgzkoGhnkGZ45k6SIxjMTPIFCZOZEKSBxA0Fpui2b"
		var_s4 = var_s4 + "5LFoKIqGoaY/FKUY1gmdpQjOKxbBIV4zi0DQ6nmOhmFkUophCLILEMV5YiWCZkH+W5nl2HxfiiMwQmMTZOmqLhaLsx9iUH6JAMI1hCDjECFQawhghjBG2DseoGQzhNHw"
		var_s4 = var_s4 + "DwTAMAsgTEeCUZI1Q5jFHyLodYmWxB8GsPEVIPwxhSD6Awb4dgJD2HsAQQIoAQEB"
		.Add(5,var_s4)
	endwith
	.Object.Background(90) = RGB(255,255,255)
	with .Elements
		.Add("Rectangular",0,0).Shape = 0
		.Add("Round",82,0).Shape = 1
		.Add("Rhomb",138,0).Shape = 2
		.Add("Circle",196,0).Shape = 3
		with .Add("EBN 1",0,36)
			.BackColor = 0x1000000
			.Border = -1
		endwith
		with .Add("EBN 2",54,36)
			.BackColor = 0x2000000
			.Border = -1
		endwith
		with .Add("EBN 3",108,36)
			.BackColor = 0x3000000
			.Border = -1
		endwith
		with .Add("EBN 4   ",160,36)
			.BackColor = 0x4000000
			.Border = -1
		endwith
		with .Add("EBN 5 ",220,36)
			.BackColor = 0x5000000
			.MinHeight = 64
			.MinWidth = 64
			.Border = -1
		endwith
	endwith
	.Object.ScrollPos(0) = -160
	.EndUpdate
endwith
21
Is it possible to add an inner control on the surface

*** OleEvent event - Occurs once an inside control fires an event. ***
LPARAMETERS Element,Ev
	with thisform.SwimLane1
		DEBUGOUT( Ev )
	endwith

with thisform.SwimLane1
	with .Elements
		with .Add("activex hosting")
			.Type = 2
			.Control = "Forms.CommandButton.1"
			.Caption = "Command Button"
			.Height = 64
			.Width = 128
			.ElementFormat = "14;"+chr(34)+"caption"+chr(34)+"/"+chr(34)+"client"+chr(34)+""
			.CaptionAlign = 1
		endwith
	endwith
endwith
20
How can I create a copy of the element
with thisform.SwimLane1
	.Object.Background(90) = RGB(255,255,255)
	.Elements.Add("Element 1",0,0).Copy().Caption = "Aka"
endwith
19
How can I define an opaque background for elements

with thisform.SwimLane1
	.Object.Background(90) = RGB(255,255,255)
	.Elements.Add("Element 1",0,0)
	.Elements.Add("Element 2",16,16)
endwith
18
How can I show a different context-menu for all elements
*** ActionContextMenu event - Occurs when the user selects an item from the object's context menu. ***
LPARAMETERS Action,ObjectType,ObjectID,CommandID,CommandChecked,CommandCaption,CommandValue,Cancel
	with thisform.SwimLane1
		DEBUGOUT( Action )
		DEBUGOUT( ObjectID )
		DEBUGOUT( CommandID )
	endwith

with thisform.SwimLane1
	.Object.ContextMenu(4) = "Item 1[id=1000],Item 2[id=2000]"
	.Object.Background(90) = RGB(255,255,255)
	.Elements.Add("Element 1",0,0)
	.Elements.Add("Element 2",16,16)
endwith
17
How can I show a different context-menu for element
with thisform.SwimLane1
	DEBUGOUT( .Elements.Add("Element",0,0).InvokeContextMenu("Item 1[id=1000],Item 2[id=2000]") )
endwith
16
How can I change the design-modes being shown on the control's toolbar

with thisform.SwimLane1
	.DesignModes = "Read-Only#0,Allow Any#3,Only-Element#1,Only-Pool#2"
endwith
15
How can I change the default header's background color

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-250,-150,500,250)
		.Lane(0).Children.Count = 4
		.Lane(1).Children.Count = 4
	endwith
	.Object.Background(120) = RGB(0,255,0)
	.Object.Background(124) = RGB(0,192,0)
	.EndUpdate
endwith
14
How can I remove the Design item from the control's toolbar, to be locked ( no-design )

with thisform.SwimLane1
	.ToolBarFormat = "-1,100,101"
	.DesignMode = 0
endwith
13
How can I remove/disable the Color and Display-Grid from the surface's context menu

with thisform.SwimLane1
	var_s = "Delete[id=-32004](All[id=-32000][ttp=Deletes all the objects from the surface],[sep],Elements[id=-32001][ttp=Deletes all element"
	var_s = var_s + "s from the surface],Links[id=-32002][ttp=Deletes all links from the surface],Pools[id=-32003][ttp=Deletes all pools from the sur"
	var_s = var_s + "face])"
	.Object.ContextMenu(24) = var_s
endwith
12
How can I change the element's context-menu when the user right-clicks the element

*** ActionContextMenu event - Occurs when the user selects an item from the object's context menu. ***
LPARAMETERS Action,ObjectType,ObjectID,CommandID,CommandChecked,CommandCaption,CommandValue,Cancel
	*** ContextMenuObjectFromID(ObjectType,ObjectID).BackColor = RGB(255,255,0)
	with thisform.SwimLane1
		DEBUGOUT( Action )
		DEBUGOUT( CommandCaption )
	endwith

with thisform.SwimLane1
	.BeginUpdate
	.Elements.Add("element",0,0)
	.Object.ContextMenu(4) = "Simple,Value[edit=123],[sep],Popup(Check 1[chk],Check 2[chk=1])"
	.EndUpdate
endwith
11
How do I prevent showing the context-menu when user right-clicks the surface
with thisform.SwimLane1
	.Object.ContextMenu(24) = ""
endwith
10
How do I create parent-child (tree) lanes

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-250,-150,500,250)
		.HeaderSize(1) = 32
		.HeaderVisible(3) = .F.
		with .Lane(1).Children
			.Count = 2
			with .Item(0).Children
				.Count = 2
				.Item(0).Header.Caption = "Phase <b>1.1"
				.Item(1).Header.Caption = "Phase <b>1.2"
			endwith
		endwith
	endwith
	.EndUpdate
endwith
9
How do I create a pool with horizontal and lanes

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-250,-150,500,250)
		.Lane(0).Children.Count = 4
		.Lane(1).Children.Count = 4
	endwith
	.EndUpdate
endwith
8
How do I add programatically a pool with horizontal lanes

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-250,-150,500,250)
		.Lane(0).Children.Count = 4
	endwith
	.EndUpdate
endwith
7
How do I add programatically a pool with vertical lanes

with thisform.SwimLane1
	.BeginUpdate
	with .Pools.Add(-250,-150,500,250)
		.Lane(1).Children.Count = 4
	endwith
	.EndUpdate
endwith
6
How can I change the toolbar's visual appearance

with thisform.SwimLane1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.Object.Background(148) = 0x1000000
	.Object.Background(149) = RGB(255,255,255)
	.Object.Background(150) = RGB(40,40,40)
	.Object.Background(153) = 0x1606060
	.Object.Background(154) = RGB(240,240,240)
	.Object.Background(155) = 0x1a0a0a0
	.Object.Background(156) = RGB(255,255,255)
endwith
5
How can I change the toolbar's background color

with thisform.SwimLane1
	.Object.Background(149) = RGB(255,255,255)
endwith