[]
Gets a picture or text to be right aligned in the page footer.
Use the returned IHeaderFooter object to configure the text or picture shown in the right section of the footer for this page.
IHeaderFooter RightFooter { get; }
ReadOnly Property RightFooter As IHeaderFooter
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.DifferentFirstPageHeaderFooter = true;
IHeaderFooter rightFooter = pageSetup.FirstPage.RightFooter;
rightFooter.Text = "Printed Copy";
string text = rightFooter.Text;