Gets or sets whether IF fields should be evaluated server-side in the WordTemplate.

public boolean UpdateIfFields{ get; set; }
Public Property UpdateIfFields() As Boolean

If set to true, all IF fields on the template will be evaluated on the server side by the WordTemplate object. If set to false, the IF fields will not be evaluated without user action.

          WordTemplate WordTempl = new WordTemplate();
          WordTempl.UpdateIfFields = true;
        
          Dim WordTempl As New WordTemplate()
          WordTempl.UpdateIfFields = True