ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / StyleSheet Class / Save Method
A System.IO.Stream object to write to.
Example

In This Topic
    Save Method (StyleSheet)
    In This Topic
    Writes a StyleSheet object to a System.IO.Stream.
    Syntax
    'Declaration
     
    Public Sub Save( _
       ByVal stream As Stream _
    ) 
    public void Save( 
       Stream stream
    )

    Parameters

    stream
    A System.IO.Stream object to write to.
    Exceptions
    ExceptionDescription
    Throws if stream is null.
    Example
    using (var stream = new MemoryStream())
    {
    	styleSheet.Save(stream);
    }
    See Also