Printing Multiple CMS-1500 Forms

Index

    Printing Multiple CMS-1500 Forms

    To print more than one CMS-1500 Forms using one print job use the Data property of the CMS1500Form class.

    Step 1 – Initialize DataTo Print

    CMSFormData cmsData1 = new CMSFormData();
    cmsData1.Box1A = true;
    cmsData1.Box1Aa = “Insured ID Number”;
     
    CMSFormData cmsData2 = new CMSFormData();
    cmsData2.Box1A = true;
    cmsData2.Box1Aa = “Insured ID Number”;

    Step 2 – Print the Forms

    CMS1500Form cmsForm = new CMS1500Form();
    cmsForm.Data.Add(cmsData1);
    cmsForm.Data.Add(cmsData2);
     
    cmsForm.Print();
    in CMS – 1500 Form
    Did this article answer your question?