TSF.UmlToolingFramework.Wrappers.EA.Model.getAttributeByID C# (CSharp) Méthode

getAttributeByID() public méthode

gets the Attribute with the given ID
public getAttributeByID ( int attributID ) : Attribute
attributID int the attribute's ID
Résultat Attribute
        public Attribute getAttributeByID(int attributID)
        {
            try
            {
            return this.factory.createElement(this.wrappedModel.GetAttributeByID(attributID)) as Attribute;
            }catch (Exception)
            {
            // attribute not found, return null
            return null;
            }
        }