i m using arcgis api for silverlight - Interactive sample
i have create a button for print on the Main Panel
code behind the button
private void print_Click(object sender, RoutedEventArgs e)
{
// create an instance of PrintDocument
PrintDocument document = new PrintDocument();
// tell the API what to print
document.PrintPage += (s, args) =>
{
args.PageVisual = tabPanel;
};
document.Print("Print In Silverlight");
}
it print the map but the issue is it did not print on the whole page either A4, A3 size is seleted
attaching the print out for reference