English 中文(简体)
Check if Field is of Type Rich Text with @Formula
原标题:

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.

最佳回答

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.

问题回答

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.





相关问题
Where are the javadocs for Lotus Notes.jar?

I need to use Lotus Notes/Domino as a data source from a Java application. The documentation at IBM says that the Notes.jar contains everything I will need, but where are the javadocs?

Is Interop.Domino dll thread safe?

I am using Interop.Domino dll version 1.2 in c# application, and using multithreading to access multiple NSF file at same time by creating new session for each thread created (Max 5 threads at a time)....

C#和Lotus Notes附录一

我正在使用C#,并需要附上一张空白(shortcut/link)档案和电子邮件给一个彩票账户。 问题是一对一幅通用形象的不实之词,没有像......那样显示双fold。

How to maintain Lotus Notes Version ? C#

I made one product which is retrieving attachment from mails and saving it on particular folder. But problem i am facing is it is not working in 8.0 version. I did development on Lotus Notes 8.5 ...

How to Edit NSF file using c#?

I want to programaticaly change some values to NSF item and then want to save it.(i.e to edit NSF File and then save the editions) for example: I want to set Sender name of all mails to "preeti@abc....

热门标签