Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Exporting Namespace / ExcelExporter Class / Export Method / Export(DetailGrid,Stream) Method
A reference to a Xceed.Grid.DetailGrid. Cannot be a null reference (Nothing in Visual Basic)
The System.IO.Stream to which to export the detail grid. Cannot be a null reference (Nothing in Visual Basic).


In This Topic
    Export(DetailGrid,Stream) Method
    In This Topic
    Exports the data of a Xceed.Grid.DetailGrid in XML to a stream.
    Syntax
    'Declaration
     
    Public Overloads Sub Export( _
       ByVal detailGrid As DetailGrid, _
       ByVal stream As Stream _
    ) 
    'Usage
     
    Dim instance As ExcelExporter
    Dim detailGrid As DetailGrid
    Dim stream As Stream
     
    instance.Export(detailGrid, stream)
    public void Export( 
       DetailGrid detailGrid,
       Stream stream
    )

    Parameters

    detailGrid
    A reference to a Xceed.Grid.DetailGrid. Cannot be a null reference (Nothing in Visual Basic)
    stream
    The System.IO.Stream to which to export the detail grid. Cannot be a null reference (Nothing in Visual Basic).
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also