GetIgnoreEnvelope

WRAPPER_API bool GetIgnoreEnvelope() const

 

Description

The GetIgnoreEnvelope method indicates whether all Envelopes will return true when InBounds is called.

 

Example

void DataSource_GetIgnoreEnvelope(GeoCalcPBW::DataSource & data)

{

if(! data.get_IsLoaded())

{

data.LoadFile(L"c:\\bmg\\geocalcpbw\\data\\geocalc.xml");

data.set_DefaultIssuer(L"GC");

data.set_Editable(true);

if(! data.GetIgnoreEnvelope())

{

data.SetIgnoreEnvelope(true);

}

}

}