Stores one column of the results of a call to .
This is the base class for derived classes that store one column of the results of a call to WorkbookAutoFiller.AutoFillWorkbook. See AutoFillWorkbookResults for more details.
Inheritance: Object
        AddSummarySentence
        (
            AutoFillColumnResults oAutoFillColumnResults,
            String sDestinationColumnDescription,
            SentenceConcatenator oSentenceConcatenator
        )
        {
            Debug.Assert(oAutoFillColumnResults != null);
            Debug.Assert(!String.IsNullOrEmpty(sDestinationColumnDescription));
            Debug.Assert(oSentenceConcatenator != null);
            AssertValid();

            if (oAutoFillColumnResults.ColumnAutoFilled)
            {
                oSentenceConcatenator.AddSentence(

                    "The {0} are based on {1} values."
                    ,
                    sDestinationColumnDescription,
                    oAutoFillColumnResults.SourceColumnName.ToLower()
                    );
            }
        }
    AddSummarySentence
    (
        AutoFillColumnResults oAutoFillColumnResults,
        String sDestinationColumnDescription,
        SentenceConcatenator oSentenceConcatenator
    )
    {
        Debug.Assert(oAutoFillColumnResults != null);
        Debug.Assert( !String.IsNullOrEmpty(sDestinationColumnDescription) );
        Debug.Assert(oSentenceConcatenator != null);
        AssertValid();

        if (oAutoFillColumnResults.ColumnAutoFilled)
        {
            oSentenceConcatenator.AddSentence(

                "The {0} are based on {1} values."
                ,
                sDestinationColumnDescription,
                oAutoFillColumnResults.SourceColumnName.ToLower()
                );
        }
    }