检查 Visio ShapeSheet 部分是否为空的公式

发布于 2024-11-15 23:41:54 字数 65 浏览 3 评论 0原文

我需要仅当至少有一个超链接(“超链接”部分非空)时才启用形状上下文菜单中的一项操作。

有这个公式吗?

I need an action in the shape context menu to be enabled only when there is at least one hyperlink (the "Hyperlinks" section is non-empty).

Is there a formula for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-11-22 23:41:55

如果您的意思是测试是否有任何超链接的公式,请尝试:

    If (vsoShape.RowCount(visSectionHyperlink) > 0) Then
        'Code to enable context menu
    End If

If you mean a formula for testing if there are any hyperlinks try:

    If (vsoShape.RowCount(visSectionHyperlink) > 0) Then
        'Code to enable context menu
    End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文