Public Function GetVariableProfile( _ ByVal variableName As String _ ) As VoxelVariableProfile
public VoxelVariableProfile GetVariableProfile( string variableName )
Parameters
- variableName
- The variable name
Public Function GetVariableProfile( _ ByVal variableName As String _ ) As VoxelVariableProfile
public VoxelVariableProfile GetVariableProfile( string variableName )
{
// 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)