Share

TinSurfaceTriangle.IsVisible Property

Gets whether the triangle is visible.



Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280

Syntax

C#

public bool IsVisible { get; }

VB

Public ReadOnly Property IsVisible As Boolean
	Get

C++

public:
property bool IsVisible {
	bool 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

 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

Reference

Was this information helpful?