Smrf.NodeXL.ExcelTemplate.AutoFillWorkbookDialog.btnVertexYDetails_Click C# (CSharp) Method

btnVertexYDetails_Click() private method

private btnVertexYDetails_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
    btnVertexYDetails_Click
    (
        object sender,
        EventArgs e
    )
    {
        AssertValid();

        OnDetailsClick(this.btnVertexYDetails, this.cbxVertexYSourceColumnName,
            "Vertex Y", WorksheetNames.Vertices, TableNames.Vertices,
            VertexTableColumnNames.Y,

            new NumericRangeColumnAutoFillUserSettingsDialog(
                m_oAutoFillUserSettings.VertexYDetails,
                "Vertex Y Options", "vertex y-coordinate",
                CoordinateColumnNamePlural,
                VertexLocationConverter.MinimumXYWorkbook,
                VertexLocationConverter.MaximumXYWorkbook
                )
            );
    }