range.Select(); //line 1
float X = (float) ((Microsoft.Office.Interop.Word.ApplicationClass) _application).Selection.get_Information(WdInformation.wdHorizontalPositionRelativeToPage); //line 2If I set breakpoint at line 1 and stop in debugger, I get another value in line 2. Selected range is located in table cell. May be I have to invoke some refresh function or something else before line 2. I don't really understand why I get different values for the same file and the same range in Debugger and without debugger.