I apologize for the late answer. The complex solution for this issue is being prepared. The adjusted template and other improvements in documentation generation will be included in the next release of Software Ideas Modeler.
If everything goes well, it should be released this week or in the beginning of the next one.
If you want to remove the multiplicity column from the template, you also have to change the number of columns of table in this line:
AddTable(3,1,DocumentBodyWidth, Mm(5))
If you want to add a tagged value instead of multiplicity to the Attributes table.
E.g. for "Required" is it possible this way:
AddText(Attribute.GetTaggedValue("Required"))
To display all tagged values, you need to enumerate them all this way:
ForEach:Attribute.TaggedValues
AddText(TaggedValue.Name)
AddText(" = ")
AddText(TaggedValue.Value)
AddText(", ")
EndFor
Dusan Rodina - softwareideas.net
24 October 2017 10:36:49
Reply To: RE: RE: RE:
I apologize for the late answer. The complex solution for this issue is being prepared. The adjusted template and other improvements in documentation generation will be included in the next release of Software Ideas Modeler.
If everything goes well, it should be released this week or in the beginning of the next one.
If you want to remove the multiplicity column from the template, you also have to change the number of columns of table in this line:
AddTable(3,1,DocumentBodyWidth, Mm(5))
If you want to add a tagged value instead of multiplicity to the Attributes table.
E.g. for "Required" is it possible this way:
AddText(Attribute.GetTaggedValue("Required"))
To display all tagged values, you need to enumerate them all this way:
ForEach:Attribute.TaggedValues
AddText(TaggedValue.Name)
AddText(" = ")
AddText(TaggedValue.Value)
AddText(", ")
EndFor
Dusan Rodina - softwareideas.net 24 October 2017 10:36:49