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

In This Topic
    VisibleEdgeFlag Property (Triangle)
    In This Topic
    Determines which IndexTriangle'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, and third edges of the IndexTriangle entity.
    myTriangle.VisibleEdgeFlag = 0x01 | 0x04;
    myTriangle.VisibleEdgeFlag = &H01 | &H04;
    See Also