Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / EntityList Class / GetStats Method / GetStats(BlockKeyedCollection,Int32,Int32,Int32) Method
The blocks to process.
The count of all the entities.
The count of all the vertices.
The count of all the triangles.

In This Topic
    GetStats(BlockKeyedCollection,Int32,Int32,Int32) Method
    In This Topic
    Get the statistics.
    Syntax
    'Declaration
     
    Public Overloads Function GetStats( _
       ByVal blocks As BlockKeyedCollection, _
       ByRef entitiesCount As Integer, _
       ByRef verticesCount As Integer, _
       ByRef trianglesCount As Integer _
    ) As Dictionary(Of Type,Integer)
    public Dictionary<Type,int> GetStats( 
       BlockKeyedCollection blocks,
       out int entitiesCount,
       out int verticesCount,
       out int trianglesCount
    )

    Parameters

    blocks
    The blocks to process.
    entitiesCount
    The count of all the entities.
    verticesCount
    The count of all the vertices.
    trianglesCount
    The count of all the triangles.

    Return Value

    The dictionary with the count of each entity's type.
    Remarks
    The entities inside the blocks are processed only for the counting of vertices and triangles.
    See Also