Click or drag to resize

TableCollectionItem Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets a Table object from this collection specified by name.

Namespace:  Telogis.GeoBase.Transactional
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Table this[
	string name
] { get; }

Parameters

name
Type: SystemString
The name of the Table to return. Case is not important.

Return Value

Type: Table
The named Table.
Examples
C#
// get the table named "warehouses", note that case is not important
Table myWarehouses = myTransactionalRepository.Tables["Warehouses"];
See Also