Web API Core | ComponentOne
C1.Web.Api.Excel Namespace / ExcelController Class / Export Method
The data used for the Excel export requests.

In This Topic
    Export Method
    In This Topic
    Export to an excel file.
    Syntax
    'Declaration
     
    
    <HttpPostAttribute()>
    <RouteAttribute("api/export/excel")>
    Public Overridable Function Export( _
       ByVal source As ExcelExportSource _
    ) As IActionResult
    [HttpPost()]
    [Route("api/export/excel")]
    public virtual IActionResult Export( 
       ExcelExportSource source
    )

    Parameters

    source
    The data used for the Excel export requests.

    Return Value

    An excel file.
    See Also