GetExcludeList Method

WRAPPER_API const std::vector<wstring> GetExcludeList() const

 

Description

An interface for retrieving a list of strings from the DatumShiftPicker (via DatumShiftPreferencesEx), the DataSourceEditor, or the DataSourcePicker. This strings will be a list of GC codes to exclude, in determining what objects to display/return.

 

Example

void DataSourceEditor_GetExcludeList Method(GeoCalcPBW::DataSourceEditor & editor, HWND newParent)

{

const std::vector<wstring> * list = editor.GetExcludeList();

editor.SetTitleBarCaption(L"DataSourceEditor Dialog");

editor.SetParent(newParent);

editor.Show();

}