如何在企业架构师的下拉列表中添加多个标记值?
我正在使用企业架构师,我希望在下拉列表中显示多个值作为标记值。我只能为标记值赋予一个值,但我不知道如何为一系列选择执行此操作。我在 sparx 系统的用户指南中找不到帮助。也许我没有找到它......有什么帮助吗?
谢谢
I am using enterprise architect and I want to have several values displayed in a drop down list as tagged values. I am only able to give one value to the tagged value but I don't know how to do it for a list of choices. I could not find help in the userguide by sparx systems. Maybe I did not find it...any help?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 Enterprise Architect 中创建下拉标记值列表,请执行以下操作:
打开“标记值可停靠”窗口 [查看 | 标签值] [标记值] (Ctrl + Shift +6)
单击“标记值”窗口上的“默认标记值类型”按钮。
这将打开 UML 类型对话框。
浏览到“标记值类型”选项卡(默认情况下应打开)
输入新标记值的名称
>
在详细信息中输入以下内容:
Type=Enum;
值=Val1,Val2,Val3;
默认=Val2;
7.(其中 vals 是您的下拉选项)
8.单击“保存”并关闭“UML 类型”对话框
要访问这个新的下拉标记值,请单击“新标记值”,然后从列表中选择您的标记,然后单击“确定”。您的下拉选项现在将在“标记值”窗口中可用。
您可以在此处找到所有不同标记值类型命令的列表,
我希望这会有所帮助。
To create a list of drop down tagged values in Enterprise Architect:
Open the Tagged Values Dockable Window [View | Tagged Values] (Ctrl + Shift +6)
Click "Default Tagged Value Types" button on the Tagged Values window.
This will open the UML Types Dialog.
Browse to the Tagged Value Types Tab (should be open by default)
Enter in the name for your new tagged value
In the detail enter the following:
Type=Enum;
Values=Val1,Val2,Val3;
Default=Val2;
7.(Where the vals are your drop down options)
8.Click Save and Close the UML Types Dialog
To access this new drop down tagged value click "New Tagged Value" and select your tag from the list and click OK. Your drop down options will now be available in the Tagged Values window.
You can find a list of all the different tag value type commands here
I hope this helps.