CADability dotNET
Creates a new GeoObjectChange object. See the appropriate constructor of ReversibleChange for details.

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

Syntax

C#
public GeoObjectChange(
	IGeoObject objectToChange,
	Type interfaceForMethod,
	string methodOrPropertyName,
	params Object[] parameters
)
Visual Basic
Public Sub New ( _
	objectToChange As IGeoObject, _
	interfaceForMethod As Type, _
	methodOrPropertyName As String, _
	ParamArray parameters As Object() _
)
Visual C++
public:
GeoObjectChange(
	IGeoObject^ objectToChange, 
	Type^ interfaceForMethod, 
	String^ methodOrPropertyName, 
	... array<Object^>^ parameters
)

Parameters

objectToChange
Type: CADability.GeoObject..::..IGeoObject
The object which will be or was changed
interfaceForMethod
Type: System..::..Type
the interface on which contains the method or property
methodOrPropertyName
Type: System..::..String
the case sensitive name of the method or property
parameters
Type: array<System..::..Object>[]()[][]
The parameters neede to call this method or property

See Also