Difference between revisions of "API Scope.SetCustom"

From Flowcode Help
Jump to navigationJump to search
(XML import API changes)
(XML Import to change Variable types into Variable Types)
Line 10: Line 10:
  
 
==Parameters==
 
==Parameters==
[[Variable types|HANDLE]] ''GroupH''
+
[[Variable Types|HANDLE]] ''GroupH''
 
:The group handle that owns the custom channel
 
:The group handle that owns the custom channel
  
[[Variable types|ULONG]] ''ChannelIx''
+
[[Variable Types|ULONG]] ''ChannelIx''
 
:An index from 0-31 of a custom analog value owned by the group
 
:An index from 0-31 of a custom analog value owned by the group
  
[[Variable types|FLOAT]] ''Value''
+
[[Variable Types|FLOAT]] ''Value''
 
:A value to set the channel to, typically 0 to 1
 
:A value to set the channel to, typically 0 to 1
  

Revision as of 11:09, 10 June 2013

<sidebar>API contents</sidebar> Sets one of 32 custom analog values for the group

Class hierarchy

Scope

SetCustom

Parameters

HANDLE GroupH

The group handle that owns the custom channel

ULONG ChannelIx

An index from 0-31 of a custom analog value owned by the group

FLOAT Value

A value to set the channel to, typically 0 to 1


Return value

This call does not return a value


Detailed description

No additional information


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Scope.SetCustom(grouph, channelix, value)

No additional information