Loads the document from the specified stream.
'Declaration
Public Overloads Sub Load( _
ByVal As Stream _
)
Parameters
- 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);
}