MapViewingMode Enumeration
Test if the view is 3D
{
//Determine whether the viewing mode is SceneLocal or SceneGlobal
var result = mapView.ViewingMode == MapViewingMode.SceneLocal ||
mapView.ViewingMode == MapViewingMode.SceneGlobal;
// Use the result variable as needed
}
Check if a Voxel Layer can be created
{
//Map must be a local scene
bool canCreateVoxel = (MapView.Active.ViewingMode == MapViewingMode.SceneLocal);
if (canCreateVoxel)
{
//TODO - use the voxel api methods
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)
ArcGIS Pro version: 3.0 or higher.