Quad.VisibleEdgeFlag Property

Determines which Quad's edge is drawn.
Public Property VisibleEdgeFlag() As Byte
This language is not supported or no code example is available.
public byte VisibleEdgeFlag {get; set;}
This language is not supported or no code example is available.

Property Value

byte
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;
 					
This language is not supported or no code example is available.
 myQuad.VisibleEdgeFlag = &H01 | &H04 | &H08;
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition