Click or drag to resize

LinkEditDatabase Constructor (String)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a LinkEditDatabase from a file. If the file doesn't exist then a new file will be created.

Namespace:  Telogis.GeoBase.Routing.LinkEdit
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public LinkEditDatabase(
	string databaseFilename
)

Parameters

databaseFilename
Type: SystemString
The database filename.
Examples
C#
public MyForm() {
    InitializeComponent();
    // Create a .gbtx link edit database in the C:\LinkEdits directory...
    Telogis.GeoBase.Routing.LinkEdit.LinkEditDatabase myLinkEditDatabase =
        new Telogis.GeoBase.Routing.LinkEdit.LinkEditDatabase(@"C:\LinkEdits\LinkEditDatabase.gbtx");
    // Next, specify the link(s) you will edit by using 
    // LatLonSelection or PolygonSelection...
}
See Also