Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / SpreadSerializer Class / OpenXml Method / OpenXml(FpSpread,Stream) Method
Spreadsheet to which to load the XML stream
Stream from which to load
Example


In This Topic
    OpenXml(FpSpread,Stream) Method
    In This Topic
    Loads the specified XML data (for an entire Spread component) from a stream into a Spread component.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function OpenXml( _
       ByVal spread As FpSpread, _
       ByVal stream As Stream _
    ) As Boolean
    'Usage
     
    
    Dim spread As FpSpread
    Dim stream As Stream
    Dim value As Boolean
     
    value = SpreadSerializer.OpenXml(spread, stream)
    public static bool OpenXml( 
       FpSpread spread,
       Stream stream
    )

    Parameters

    spread
    Spreadsheet to which to load the XML stream
    stream
    Stream from which to load

    Return Value

    Boolean: true if successful; false otherwise
    Example
    This example uses the OpenXml method.
    See Also