Smrf.NodeXL.ExcelTemplate.GraphMetricColumnOrdered.GraphMetricColumnOrdered C# (CSharp) 메소드

GraphMetricColumnOrdered() 공개 메소드

Initializes a new instance of the class.
public GraphMetricColumnOrdered ( String worksheetName, String tableName, String columnName, Double columnWidthChars, String numberFormat, String style, GraphMetricValueOrdered graphMetricValuesOrdered ) : System
worksheetName String /// Name of the worksheet containing the column. ///
tableName String /// Name of the table (ListObject) containing the column. ///
columnName String /// Name of the column. ///
columnWidthChars Double /// Width of the column, in characters, or to set the width automatically. ///
numberFormat String /// Number format of the column, or null if the column is not numeric. /// Sample: "0.00". ///
style String /// Style of the column, or null to not apply a style. Sample: "Bad". ///
graphMetricValuesOrdered GraphMetricValueOrdered /// Array of graph metric values, one value per calculated column cell. ///
리턴 System
    public GraphMetricColumnOrdered
    (
        String worksheetName,
        String tableName,
        String columnName,
        Double columnWidthChars,
        String numberFormat,
        String style,
        GraphMetricValueOrdered [] graphMetricValuesOrdered
    )
    : base(worksheetName, tableName, columnName, columnWidthChars,
        numberFormat, style)
    {
        m_aoGraphMetricValuesOrdered = graphMetricValuesOrdered;

        AssertValid();
    }

Same methods

GraphMetricColumnOrdered::GraphMetricColumnOrdered ( ) : System