Class ConstructAction.MultiPointInput
Defines an input object for an action derived from ConstructAction.
This input object extpects the input of a list of GeoPoints. The user
can define as many points as he or she wants.
Pressing enter or TAB or clicking the mouse proceeds to the next input object.
Inheritance
System.Object
ConstructAction.MultiPointInput
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: CADability.dll
public class MultiPointInput : ConstructAction.InputObject, ConstructAction.IInputObject, IIndexedGeoPoint
Constructors
|
Improve this Doc
View Source
Creates a MultiPointInput object that communicates with the provided
IIndexedGeoPoint interface.
Declaration
public MultiPointInput(IIndexedGeoPoint forwardTo)
Parameters
| Type |
Name |
Description |
| IIndexedGeoPoint |
forwardTo |
interface usually implemented by the ConstructAction derived class
|
Events
|
Improve this Doc
View Source
Event that is fired when a mousclick happens and this input has the focus.
Declaration
public event ConstructAction.MouseClickDelegate MouseClickEvent
Event Type
Explicit Interface Implementations
|
Improve this Doc
View Source
Declaration
GeoPoint IIndexedGeoPoint.GetGeoPoint(int Index)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
Returns
|
Improve this Doc
View Source
Declaration
int IIndexedGeoPoint.GetGeoPointCount()
Returns
| Type |
Description |
| System.Int32 |
|
|
Improve this Doc
View Source
Declaration
void IIndexedGeoPoint.InsertGeoPoint(int Index, GeoPoint ThePoint)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
| GeoPoint |
ThePoint |
|
|
Improve this Doc
View Source
Declaration
bool IIndexedGeoPoint.MayDelete(int Index)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
Returns
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
Declaration
bool IIndexedGeoPoint.MayInsert(int Index)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
Returns
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
Declaration
void IIndexedGeoPoint.RemoveGeoPoint(int Index)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
|
Improve this Doc
View Source
Declaration
void IIndexedGeoPoint.SetGeoPoint(int Index, GeoPoint ThePoint)
Parameters
| Type |
Name |
Description |
| System.Int32 |
Index |
|
| GeoPoint |
ThePoint |
|
Implements