Hi
i used PDF function ,while extracting data ,it is not showing properly .i checked all properties in Inputbox all are aligned properly.
any idea what was the problem
below is code:
Office365Outlook.SendEmailV2(
User().Email,
DataCardValue18.Text ,
"Your :'" & DataCardValue18.Text & "' .pdf is attached",
{
From: "abc@gmail.com",
Attachments: Table(
{
ContentBytes: PDF(
'screen1',
{
Orientation: PaperOrientation.Landscape,
Size: PaperSize.A4,
DPI: 150,
ExpandContainers: true
}
),
Name:DataCardValue18.Text & " .data.pdf"
}
)
}
);
