ArcGIS Pro 2.9 API Reference Guide
CreateStandaloneTable(Uri,IStandaloneTableContainerEdit,String) Method
Example 

ArcGIS.Desktop.Mapping Namespace > StandaloneTableFactory Class > CreateStandaloneTable Method : CreateStandaloneTable(Uri,IStandaloneTableContainerEdit,String) Method
An URI represents the path to a dataset
A map instance where the StandaloneTable will be added
System.String (optional) When not provided, the default display name gets used e.g. the dataset name or alias. (default value = "")
Overloaded. Creates a new StandaloneTable instance with the specified path to a dataset and adds it to a container such as a map. Optionally you can provide a name to override the default display name. This method must be called on the MCT. Use QueuedTask.Run.
Syntax
Public Overloads Function CreateStandaloneTable( _
   ByVal tableUri As Uri, _
   ByVal container As IStandaloneTableContainerEdit, _
   Optional ByVal tableName As String _
) As StandaloneTable

Parameters

tableUri
An URI represents the path to a dataset
container
A map instance where the StandaloneTable will be added
tableName
System.String (optional) When not provided, the default display name gets used e.g. the dataset name or alias. (default value = "")

Return Value

Exceptions
ExceptionDescription
This method or property must be called within the lambda passed to QueuedTask.Run.
Remarks

Some sample paths to:

A table in a FileGeodatabase C:\Data\MyFileGDB.gdb\MyNonSpatialTable
A dbf file in a folder \\Machine\SharedFolder\MyNonSpatial.dbf

Example
StandaloneTable st = StandaloneTableFactory.Instance.CreateStandaloneTable(new Uri(@"C:\Data\Census.gdb\MyNonSpatialTable"), MapView.Active.Map);
StandaloneTable st = StandaloneTableFactory.Instance.CreateStandaloneTable(new Uri(@"\\Machine\SharedFolder\MyNonSpatial.dbf"), MapView.Active.Map);
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

StandaloneTableFactory Class
StandaloneTableFactory Members
Overload List