Smrf.NodeXL.ExcelTemplate.GraphSummarizer.ShowWarningIfNoGraphSummary C# (CSharp) Method

ShowWarningIfNoGraphSummary() private static method

private static ShowWarningIfNoGraphSummary ( String sGraphSummary ) : System.Boolean
sGraphSummary String
return System.Boolean
    ShowWarningIfNoGraphSummary
    (
        String sGraphSummary
    )
    {
        Debug.Assert(sGraphSummary != null);

        if (sGraphSummary.Length == 0)
        {
            FormUtil.ShowWarning("A graph summary is not available.");
            return (false);
        }

        return (true);
    }
}