Eyeshot 10 WinForms API Reference
VisibleEdgeFlag Property (Quad)
Example 

WinForms Assembly > devDept.Eyeshot.Entities Namespace > Quad Class : VisibleEdgeFlag Property
Determines which Quad's edge is drawn.
Syntax
'Declaration
 
Public Property VisibleEdgeFlag As Byte
public byte VisibleEdgeFlag {get; set;}
Example
The following code fragment demonstrates how to draw only the first, third and forth edges of the Quad entity.
myQuad.VisibleEdgeFlag = 0x01 | 0x04 | 0x08;
myQuad.VisibleEdgeFlag = &H01 | &H04 | &H08;
See Also

Reference

Quad Class
Quad Members