Footer not showing on Cloned slides

I have cloned a number of slides from a power point presentation, all the details of the slides come through on the new presentation except for the text in the footer area.

Text in textboxes in the footer are come through fine only text in a footer area field fails.

I am using aspose slides version 4

Presentation downloadPresentation;

downloadPresentation = new Presentation(@"D:\Temp\PinkSheets\rbs.pot");

Presentation source = new Presentation(@"D:\Temp\PinkSheets\Pink_InternalUse.ppt");

SortedList thisSortedList = new SortedList();

source.DeleteUnusedMasters();

for (int i = 1; i <= source.Slides.Count; i++)

{

int destination = downloadPresentation.Slides.Count;

Slide activeSlide = source.GetSlideByPosition(i);

if (activeSlide != null)

if (!activeSlide.IsMasterSlide)

{

source.CloneSlide(activeSlide, destination, downloadPresentation, thisSortedList);

}

}

//export the download

downloadPresentation.Write(@"D:\Temp\PinkSheets\exported.ppt");

Answered in a private thread.