Smrf.NodeXL.ExcelTemplate.ExportedFilesDescriptionControl.btnInsertGraphSummary_Click C# (CSharp) Method

btnInsertGraphSummary_Click() private method

private btnInsertGraphSummary_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
    btnInsertGraphSummary_Click
    (
        object sender,
        EventArgs e
    )
    {
        Debug.Assert(m_oWorkbook != null);
        AssertValid();

        String sGraphSummary;

        if ( GraphSummarizer.TrySummarizeGraph(m_oWorkbook,
            out sGraphSummary) )
        {
            txbDescription.SelectedText = sGraphSummary;
        }
    }