[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.StyleSheet.Save

Save Method

Save(Stream)

Writes a StyleSheet object to a Stream.

Declaration
public void Save(Stream stream)
Parameters
Type Name Description
Stream stream

A Stream object to write to.

Examples
using (var stream = new MemoryStream())
{
	styleSheet.Save(stream);
}
Exceptions
Type Condition
ArgumentNullException

Throws if stream is null.