Public Function FindStandaloneTable( _ ByVal tableURI As String _ ) As StandaloneTable
public StandaloneTable FindStandaloneTable( string tableURI )
Parameters
- tableURI
- The URI of the StandaloneTable which is a unique identifier
Public Function FindStandaloneTable( _ ByVal tableURI As String _ ) As StandaloneTable
public StandaloneTable FindStandaloneTable( string tableURI )
{
// these routines find a standalone table whether it is a child of the Map or a GroupLayer
var tblFind = map.FindStandaloneTable("CIMPATH=map/address_audit.xml");
IReadOnlyList<StandaloneTable> tables = map.FindStandaloneTables("addresses");
// this method finds a standalone table as a child of the map only
var table = map.StandaloneTables.FirstOrDefault(t => t.Name == "Addresses");
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)