No parameters
Property description
It is used to check whether PrintTimeAtFooter option is enabled or notExample code
CComPtr<ISmpReceiptSettings>m_SmpReceiptSettings; HRESULT hr=m_SmpReceiptSettings.CoCreateInstance(CLSID_SmpReceiptSettings); if(FAILED(hr)) { AfxMessageBox(_T("SMPReceipt Settings Failed")); return FALSE; } long lPrntFooterTime; HRESULT hr=m_SmpReceiptSettings->get_PrintTimeAtFooter(&lPrntFooterTime); if(FAILED(hr)) { AfxMessageBox(_T("Failed to load"); } if(lPrntFooterTime==TRUE) { AfxMessageBox(_T("Print Time At Footer option is enabled")); } else AfxMessageBox(_T("Print Time At Footer option is disabled"));