ArcGIS Explorer Component Help |
Geodatabase..::.Path Property |
Geodatabase Class Example See Also |
Gets the path to the geodatabase.
Namespace:
ESRI.ArcGISExplorer.DataAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
Field Value
The path to the file geodatabase or ArcSDE connection file. The value will be an empty string when a ArcSDEConnectionProperties object has been used to open an ArcSDE Geodatabase.Examples
The code below creates a new Geodatabase object and opens a connection to a file geodatabase then returns
some information about it including the path to the geodatabase.
CopyC#
//Connect to a file geodatabase Geodatabase fileGdb = new Geodatabase(@"C:\Data\Scotland.gdb"); //Print the type of geodatabase System.Diagnostics.Debug.Print(fileGdb.Type.ToString()); //prints "File" //Print the geodatabase path System.Diagnostics.Debug.Print(fileGdb.Path); //prints "C:\Data\Scotland.gdb" //Print the short name for the geodatabase System.Diagnostics.Debug.Print(fileGdb.Name); //prints "Scotland.gdb" //Print the short name for the geodatabase System.Diagnostics.Debug.Print(fileGdb.ShortName); //prints "Scotland"
CopyVB.NET
'Connect to a file geodatabase Dim fileGdb As Geodatabase = New Geodatabase("C:\Data\Scotland.gdb") 'Print the type of geodatabase System.Diagnostics.Debug.Print(fileGdb.Type) 'prints "File" 'Print the geodatabase path System.Diagnostics.Debug.Print(fileGdb.Path) 'prints "C:\Data\Scotland.gdb" 'Print the short name for the geodatabase System.Diagnostics.Debug.Print(fileGdb.Name) 'prints "Scotland.gdb" 'Print the short name for the geodatabase System.Diagnostics.Debug.Print(fileGdb.ShortName) 'prints "Scotland"