Public ReadOnly Property Layer As VoxelLayer
public VoxelLayer Layer {get;}
Public ReadOnly Property Layer As VoxelLayer
public VoxelLayer Layer {get;}
{
var locked_section = MapView.Active?.GetSelectedLockedSections()?.FirstOrDefault();
if (locked_section != null)
{
voxelLayer = locked_section.Layer;
//TODO - use the layer
}
}
{
// Note: call within QueuedTask.Run()
{
var locked_section = MapView.Active?.GetSelectedLockedSections()?.FirstOrDefault();
if (locked_section != null)
{
var variable = locked_section.Layer.GetVariableProfile(locked_section.VariableName);
locked_section.Layer.SetSelectedVariableProfile(variable);
}
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)