CADability dotNET
Delegate definition for GetInsertionPointEvent

Namespace: CADability.UserInterface
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public delegate GeoPoint GetInsertionPointDelegate(
	IShowProperty sender,
	int index,
	bool after
)
Visual Basic
Public Delegate Function GetInsertionPointDelegate ( _
	sender As IShowProperty, _
	index As Integer, _
	after As Boolean _
) As GeoPoint
Visual C++
public delegate GeoPoint GetInsertionPointDelegate(
	IShowProperty^ sender, 
	int index, 
	bool after
)

Parameters

sender
Type: CADability.UserInterface..::..IShowProperty
This property
index
Type: System..::..Int32
Where to insert
after
Type: System..::..Boolean
true: insert after this index, false: insert before this index

Return Value

The new point to be inserted

See Also