DXFReaderNETControlTrim Method (ListEntityObject, EntityObject, Vector2)
|
Trims an entity.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool Trim(
List<EntityObject> Boundaries,
EntityObject Entity,
Vector2 Position
)
Public Function Trim (
Boundaries As List(Of EntityObject),
Entity As EntityObject,
Position As Vector2
) As Boolean
public:
bool Trim(
List<EntityObject^>^ Boundaries,
EntityObject^ Entity,
Vector2 Position
)
member Trim :
Boundaries : List<EntityObject> *
Entity : EntityObject *
Position : Vector2 -> bool
METHOD Trim(
Boundaries AS List<EntityObject>,
Entity AS EntityObject,
Position AS Vector2
) AS LOGIC
Parameters
- Boundaries
- Type: System.Collections.GenericListEntityObject
Specifiy a list of boundary entities. - Entity
- Type: DXFReaderNET.EntitiesEntityObject
The entity to trim. - Position
- Type: DXFReaderNETVector2
The position of the point on the entity to trim.
Return Value
Type:
BooleanTrue if the entity is trimmed.
Remarks "If 'Boundaries' is null or empty, the selected entity will be trimmed between the closest intersections to the position."
See Also