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