IfcDoc.CtlProperties.comboBoxAttributeAggregation_SelectedIndexChanged C# (CSharp) Method

comboBoxAttributeAggregation_SelectedIndexChanged() private method

private comboBoxAttributeAggregation_SelectedIndexChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void comboBoxAttributeAggregation_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (this.m_loadagg)
                return;

            DocAttribute docAttr = this.GetAttributeAggregation();
            if (docAttr != null)
            {
                docAttr.AggregationType = this.comboBoxAttributeAggregation.SelectedIndex;
                this.LoadAttributeCardinality();
            }
        }
CtlProperties