Mesh information
Using the helpful tips from Triangular mesh of random points on a sphere, it's easy to generate solids:
reg = DiscretizeGraphics[Sphere[{0, 0, 0}, 5],
MaxCellMeasure -> {"Length" -> 15}]
MeshCellCount[reg]
The interrogation tab provides useful information, but it would be helpful if the data could be captured in a text format.
Question
How can the information in the information tab (shown below) be harvested with a script?

MeshPrimitives[#, 0] // Length==VertexCount[MeshConnectivityGraph[reg]],MeshPrimitives[#, 1] // Length==EdgeCount[MeshConnectivityGraph[reg]], andMeshPrimitives[#, 2] // Length==Length@FindCycle[MeshConnectivityGraph[reg], {3}, All]– Harshal Gajjar Jun 26 '20 at 20:21MeshCellCountinstead of listing out and counting all primitives. – Greg Hurst Jun 27 '20 at 01:39