IfcDoc.CtlProperties.textBoxAttributeAggregationMax_TextChanged C# (CSharp) Méthode

textBoxAttributeAggregationMax_TextChanged() private méthode

private textBoxAttributeAggregationMax_TextChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat 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