PrjMessagesEnumerator Class
supports a simple iteration over
Eplan::EplApi::EServices:
System.Object
Eplan.EplApi.EServices.PrjMessagesEnumerator
getting all project messages after an offline run
Check oCheck = new Check();
oCheck.VerifyProject(oProject);
PrjMessagesCollection colPrjMsg = new PrjMessagesCollection(oProject);
PrjMessagesEnumerator itPrjMsg = colPrjMsg.GetPrjMsgEnumerator();
itPrjMsg.MoveNext();
int nNr=0;
do
{
ProjectMessage oPrjMsg = itPrjMsg.Current as ProjectMessage;
if (oPrjMsg != null)
{
nNr++;
}
} while(itPrjMsg.MoveNext());