[This is preliminary documentation and is subject to change.]

Gets a list of all the countries names and the corresponding ids.

Namespace:  OfficeClip.DBLayer.Framework
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataTable GetCountries(
	bool isFirstLineBlank
)
Visual Basic (Declaration)
Public Function GetCountries ( _
	isFirstLineBlank As Boolean _
) As DataTable
Visual C++
public:
DataTable^ GetCountries(
	bool isFirstLineBlank
)

Parameters

isFirstLineBlank
Type: System..::.Boolean
Flag (True/False) indicating whether the first item in the list should be a blank entry or not.

Return Value

DataTable consisting of the following two columns.
  • id (System.Int32)Id of the Country.
  • name (System.String)Name of the Country.

See Also