BeforeMirror

Top  Previous  Next

 

BeforeMirror (Event)

 

This event occurs before some objects are mirror copied by a specific mirror line

 

Syntax:

Private Sub object_BeforeMirror(Sender As System.Object, e As BeforeMirrorEventArgs)

 

The BeforeMirror event syntax has the following parts:

Argument

Data Type

Description

Sender

System.Object

Is the object that raises the event

e.lHandles()

Integer

The handles of the objects to be mirror copy

e.mirX1

Single

Is the x coordinate of the first point of the mirror line

e.mirY1

Single

Is the y coordinate of the first point of the mirror line

e.mirX2

Single

Is the x coordinate of the second point of the mirror line

e.mirY2

Single

Is the y coordinate of the second point of the mirror line

e.fCancel

Boolean

A Boolean expression that if it is True then this event is canceled

 

Example