Esempio n. 1
0
 /// <summary>
 /// Loads the report from a specified .fpx file.
 /// </summary>
 public new void Load(string fileName)
 {
     if (CurrentPreview == null)
     {
         return;
     }
     CurrentPreview.Load(fileName);
 }
Esempio n. 2
0
 /// <summary>
 /// Load the report from a stream.
 /// </summary>
 /// <param name="stream">The stream to load from.</param>
 public new void Load(Stream stream)
 {
     if (CurrentPreview == null)
     {
         return;
     }
     CurrentPreview.Load(stream);
 }
Esempio n. 3
0
 /// <summary>
 /// Loads the report from a .fpx file using the "Open File" dialog.
 /// </summary>
 public new void Load()
 {
     if (CurrentPreview == null)
     {
         return;
     }
     CurrentPreview.Load();
 }