[]
Loads the document from the specified stream.
public void Load(Stream stream)
Type | Name | Description |
---|---|---|
Stream | stream | The stream used to load the document. |
using (var stream = File.Open("Document.rdf", FileMode.Open, FileAccess.Read, FileShare.None))
{
var document = new GrapeCity.ActiveReports.Document.SectionDocument();
document.Load(stream);
}
Loads the document from the specified RDF file.
public void Load(string fileName)
Type | Name | Description |
---|---|---|
string | fileName | The RDF file used to load the document. |
var document = new GrapeCity.ActiveReports.Document.SectionDocument();
document.Load("Document.rdf");