TSF.UmlToolingFramework.Wrappers.EA.Model.addTaggedValueType C# (CSharp) Method

addTaggedValueType() public method

public addTaggedValueType ( string tagName, string tagDescription, string tagDetail ) : void
tagName string
tagDescription string
tagDetail string
return void
        public void addTaggedValueType(string tagName, string tagDescription, string tagDetail)
        {
            global::EA.PropertyType taggedValueType = (global::EA.PropertyType)this.wrappedModel.PropertyTypes.AddNew(tagName,"");
            taggedValueType.Description = tagDescription;
            taggedValueType.Detail = tagDetail;
            taggedValueType.Update();
        }