SetExternalLines

Top  Previous  Next

 

SetExternalLines (Event)

 

This event is related with the command Add_ExternalLines which has been used in the drawing to create external lines with a specific key name. When this event is triggered you can give the coordinates of the external lines

 

Syntax:

Private Sub object_SetExternalLines(Sender As System.Object, e As SetExternalLinesEventArgs)

 

The SetExternalLines event syntax has the following parts:

Argument

Data Type

Description

Sender

System.Object

Is the object that raises the event

e.sName

String

A String expression that defines the key name of the external lines

e.x1()

Single

An array of Singles for the x coordinates of the first points of the external lines

e.y1()

Single

An array of Singles for the y coordinates of the first points of the external lines

e.z1()

Single

An array of Singles for the z coordinates of the first points of the external lines

e.x2()

Single

An array of Singles for the x coordinates of the second points of the external lines

e.y2()

Single

An array of Singles for the y coordinates of the second points of the external lines

e.z2()

Single

An array of Singles for the z coordinates of the second points of the external lines

 

Example