Issue 122385

Summary: automation change cell and print
Product: App Dev Reporter: Adrian <caradri4>
Component: sdkAssignee: AOO issues mailing list <issues>
Status: UNCONFIRMED --- QA Contact:
Severity: Normal    
Priority: P3 CC: issues
Version: 3.4.1   
Target Milestone: ---   
Hardware: All   
OS: All   
Issue Type: DEFECT Latest Confirmation in: ---
Developer Difficulty: ---

Description Adrian 2013-05-26 05:05:33 UTC
Hi.
I'm trying to change a template and print it, but the changes doesn't print.
this is my code.

        Ods ods = new Ods(@"file.ods"); //or file.xls  

        ods.Tables["Sheet2"]["B5"].Value = "Adrian";

        Console.WriteLine(ods.Tables["Sheet2"]["A5"].Value);



        Console.WriteLine(ods.Tables["Sheet2"]["B5"].Value);

        
         ods.Print(); 


in the line: Console.WriteLine(ods.Tables["Sheet2"]["B5"].Value) i can see the value on screen but when i print its an empty template.
What i'm doing wrong?
Thanks.