Difference between revisions of "API Component.Property.SetFilter"

From Flowcode Help
Jump to navigationJump to search
(XML Import to change Variable types into Variable Types)
(XML import)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<sidebar>API contents</sidebar>
+
<sidebar>API Contents</sidebar>
 
Sets a components property filter string for lists, files, etc
 
Sets a components property filter string for lists, files, etc
  
Line 26: Line 26:
  
 
==Detailed description==
 
==Detailed description==
''<span style="color:red;">No additional information</span>''
+
Sets the filter field of a property. The filter field is a text block whose use in Flowcode is decided by the properties type.
 +
 
 +
 
 +
The field, for example, may be used to hold a list of items in a list-type property, or a file-filter in a file selection property. See the list of [[Property Type|property types]] for further details.
 +
 
 +
 
 +
No checks are done for validation on the field, and any text desired may be entered into this. However, it is the callers responsibility to only add text with the correct format if a format is required..
  
  
Line 33: Line 39:
 
* Add to a calculation icon: <pre class="brush:[cpp]">::Component.Property.SetFilter(handle, "property", "value")</pre>
 
* Add to a calculation icon: <pre class="brush:[cpp]">::Component.Property.SetFilter(handle, "property", "value")</pre>
  
''<span style="color:red;">No additional information</span>''
+
''<span style="color:red;">No additional examples</span>''

Latest revision as of 15:57, 16 January 2014

<sidebar>API Contents</sidebar> Sets a components property filter string for lists, files, etc

Class hierarchy

Component

Property
SetFilter

Parameters

HANDLE Handle

The component handle of the property owner

STRING Property

The textual name of the property

STRING Value

The value to update the property filter with


Return value

This call does not return a value


Detailed description

Sets the filter field of a property. The filter field is a text block whose use in Flowcode is decided by the properties type.


The field, for example, may be used to hold a list of items in a list-type property, or a file-filter in a file selection property. See the list of property types for further details.


No checks are done for validation on the field, and any text desired may be entered into this. However, it is the callers responsibility to only add text with the correct format if a format is required..


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Component.Property.SetFilter(handle, "property", "value")

No additional examples