Text Block properties

The Properties Field Set contains some properties of the Text Block that is being filtered:

  • Properties._Name is a name of the Text Block.
  • Properties._Rich contains "Y" if the Text Block is a Rich Text Block, "N" otherwise.

The following command excludes all Rich Text Blocks from a Text Block List.

FILTER
FUNC BOOL text (FIELDSET Set)
DO
  ASSIGN text := (Set._Rich <> "Y")
OD

The following command includes all Text Blocks where the "State" metadata attribute contains the value from the Customer.State Field in the Data Backbone.

FILTER
FUNC BOOL state (FIELDSET Ignored)
DO
  ASSIGN state := metadata_contains ("State"; _data.Customer.State)
OD