pipeclient class : direct getter call
Description
Gets a item's value using Rice's getter call notation.
Syntax
pipeclientInstance.itemName
Arguments
None.
Return value
Class | Description |
string | A value of the item. |
Sample code
1: | pipe p = new pipe("newchannel"); |
2: | pipeclient pClient = new pipeclient("newchannel"); |
3: | pClient.Set("item1", "item1_value"); |
4: | string val = pClient.item1; // The val is "item1_value". |
Notes
Normal getter calls take precedence. That is, "Fitted", "TypeName", and "ChannelName" as items are hidden.
Links for reference
None.