Checks if the provided NADCON region is valid, i.e. it is not undefined and it is not outside its range.
true - if the NADCON region is valid, false - if it is invalid
This sample shows how to call the ApsNadcon.IsValidNadconRegion method from C# code:
ApsNadconRegion nadconRegion = ApsNadconRegion.ConterminousUS;
string errorMessage = String.Empty;
if (ApsNadcon.IsValidNadconRegion(nadconRegion, out errorMessage))
{
Console.WriteLine("NADCON region is valid.");
}
else
{
Console.WriteLine(errorMessage);
}
ApsNadcon Class | ApsNadcon Namespace