We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I installed QuestPDF and HTML Agility Pack. How can I apply Notes? It says can not resolve SetHtml.
string Notes = "<b>Terms and conditions apply.</b>"
container.Row(row => { row.RelativeItem(350).Background(Colors.Grey.Lighten3).Padding(5).Column(column => { column.Spacing(2); column.Item().Text("Notlar / Notes:").Bold(); column.Item().SetHtml(Notes); }); });
The text was updated successfully, but these errors were encountered:
Works this way,
column.Item().HTML(handler => { handler.SetHtml(Notes); });
Sorry, something went wrong.
No branches or pull requests
Hi,
I installed QuestPDF and HTML Agility Pack. How can I apply Notes? It says can not resolve SetHtml.
string Notes = "<b>Terms and conditions apply.</b>"
The text was updated successfully, but these errors were encountered: