TinSurfaceTriangleIsVisible Property |
Gets whether the triangle is visible.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic bool IsVisible { get; }
Public ReadOnly Property IsVisible As Boolean
Get
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
2var allTriangles = tinSurface.GetTriangles(true);
3foreach(var triangle in allTriangles)
4{
5 if (triangle.IsVisible)
6 {
7
8 }
9 else
10 {
11
12 }
13}
See Also