TinSurfaceTriangleIsVisible Property

Gets whether the triangle is visible.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public bool IsVisible { get; }

Property Value

Boolean
Remarks
Invisible triangles are the triangles which are inside the hole boundary.
Example
This example shows how to get triangles including invisible ones and then handle them respectively
C#
 1//TinSurface tinSurface
 2var allTriangles = tinSurface.GetTriangles(true);//get all triangles including invisible ones.
 3foreach(var triangle in allTriangles)
 4{
 5   if (triangle.IsVisible)
 6   {
 7       //handle visible triangles
 8   }
 9   else
10   {
11       //handle invisible triangles
12   }
13}
See Also