IfcDoc.CtlProperties.textBoxAttributeAggregationMin_TextChanged C# (CSharp) Method

textBoxAttributeAggregationMin_TextChanged() private method

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

            DocAttribute docAttr = this.GetAttributeAggregation();
            docAttr.AggregationLower = this.textBoxAttributeAggregationMin.Text;
            this.LoadAttributeCardinality();
        }
CtlProperties