Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
270
UltraWinGrid - Printing page numbers
posted

I am using Infragistics NetAdvantage 7.1 and i would like to printout to include a footer that shows a format like this:

"Page 1 of 8".

I have been searching documentations and online all over and could only find that <#> means "page number".
But there is no mentioning what the substitution code for "total number of pages"

private
void ultraGrid_InitializePrint(object sender, CancelablePrintEventArgs e)
{
    e.DefaultLogicalPageLayoutInfo.PageFooter = "Page <#> of ????";
}

I would greatly appreciate if you can point me to the right URL where i could see the complete list of
"substitution codes" that PrintHeader/PrintFooter would accept.

Thanx a lot.