How to find a full field's name.

Question

How to find the correct field's name for using in Document.Field("...") constructions?

Answer

Create Batch processing script with following code:

foreach (IField field in Documents[0].Sections[0].Children)
{
FCTools.ShowMessage(field.FullName);
}

Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.