使用@Formula检查字段是否为富文本类型

发布于 2024-12-02 02:08:10 字数 86 浏览 1 评论 0原文

我需要在视图中使用 @Forumla 检查字段是否属于“富文本”类型。我怎样才能实现这个目标? 或者,也可以在视图中使用@Forumla 检查字段的字节大小。

I need to check if a field is of type "Rich Text" using @Forumla in a View. How can I achieve this?
Alternatively, check the byte size of a field also using @Forumla in a View.

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

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

发布评论

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

评论(2

往事风中埋 2024-12-09 02:08:10

您可以使用 @Abstract 公式将富文本转换为纯文本,然后在视图中显示。不幸的是@Abstract在视图中不起作用。

如果视图本身无法完成工作,您始终可以使用代理来处理文档并设置文档项值,该值又可以显示在视图中。这是一个额外的步骤,但通常可以完成工作。例如,使用 LotusScript,您可以循环遍历文档的所有项目并检查它们是否为 RICHTEXT 类型,然后使用设置为“Yes”的“IsRichText”项目来标记文档。

You can turn Rich Text into plain text using the @Abstract formula, and then display that in the view. Unfortunately @Abstract does not work in views.

If views themselves won't get the job done, you can always use an agent to process the documents and set a document item value, which in turn can be shown in a view. It's an extra step but often can get the job done. Using LotusScript you could loop through all the document's items and check if they are a RICHTEXT type, and then stamp the document with an "IsRichText" item set to "Yes", for example.

我很坚强 2024-12-09 02:08:10

公式语言不会显示这些值。您可以获得的收盘价是@Length。如果设计中可能的话,使用 Lotus 脚本计算这些值是一个单独的字段。

Formula language will not show these values. The closes you can get is @Length. If it is possible in the design, calculate these values is a separate field using lotus script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文