HyperLink.Target 可能值的枚举
也许有点菜鸟 .NET 问题,但是是否有一个枚举代表 HyperLink.Target 的可能值(例如“_blank”、“_top”等)?
Maybe kind of a noob .NET question, but is there an enum that represents the possible values for HyperLink.Target (e.g. "_blank", "_top", etc)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有现成的枚举。可能是因为(除了以 _ 开头的特殊值)目标可以包含必须打开文档的特定框架的名称
There's no ready-made enum. Probably because (besides the special values starting with _) target can contain the name of a specific frame where it has to open the document
不,.NET Framework 中没有用于此目的的内置枚举。你必须自己创建它。 :)
No, there is no built-in enum for this in the .NET Framework. You have to create it yourself. :)