Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Quad Class / VisibleEdgeFlag Property
Example

In This Topic
    VisibleEdgeFlag Property (Quad)
    In This Topic
    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