使用@Formula检查字段是否为富文本类型
我需要在视图中使用 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
@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.
公式语言不会显示这些值。您可以获得的收盘价是@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.