IfcDoc.CtlProperties.textBoxAttributeAggregationMax_TextChanged C# (CSharp) Method

textBoxAttributeAggregationMax_TextChanged() private method

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

            DocAttribute docAttr = this.GetAttributeAggregation();
            docAttr.AggregationUpper = this.textBoxAttributeAggregationMax.Text;
            this.LoadAttributeCardinality();
        }
CtlProperties