@Sumaira
Currently, the Business card doesn't support Reset function. please vote for this idea which is in plan.
However, as an alternative workaround for resetting the form content, use variable to pass the BusinessCardReader value, and show on the form. when you want to reset them, just set these variables to blank.
For example:
1. set OnChange property of BusinessCardReader1:
UpdateContext({VarName:BusinessCardReader1.FullName,VarPhone:BusinessCardReader1.BusinessPhone})
2. set Default property of text box in the form to Variables
3. set OnSelect property of Reset button:
UpdateContext({VarName:Blank(),VarPhone:Blank()})

Sik