Parses a table name into its constituent parts.
[Visual Basic .NET] Public Function ParseTableName ( _ ByVal inputTableName As String, _ [ByRef Workspace As Object] _ ) As String
[C#] public string ParseTableName ( string inputTableName, ref object Workspace );
[C#]
Optional Values
Workspace To indicate that this parameter is undefined, first define a variable object Missing = Type.Missing; then pass this in as ref Missing.
[C++]
HRESULT ParseTableName(
BSTR inputTableName,
VARIANT* Workspace,
BSTR* outputParsedName
);
[C++]Parameters
inputTableName [in] inputTableName is a parameter of type BSTR Workspace [optional] Workspace is a parameter of type VARIANTTo indicate this parameter is undefined pass a reference to a VARIANT with type VT_ERROR and scode value of DISP_E_PARAMNOTFOUND.
outputParsedName [out, retval] outputParsedName is a parameter of type BSTR
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.