- Getting started
- Using the software
- OPC UA
- Graphic and layout objects
- Developing solutions
- Developing projects with C#
- Application examples
- UI tutorial
- OPC UA tutorial
- NetLogic tutorial
- Object and variable references
IUANode.Add(child)
Adds a project node that corresponds to the C# object passed in the argument.
void Add(IUANodechild);
Arguments
- child(IUANode)
- A C# object that corresponds to the project node to add.
Example
The following example shows that the
MyLabel
label child of the Panel
object is added in the project:
var newPanel = InformationModel.MakeObject<Panel>("Panel"); var newLabel = InformationModel.MakeObject<Label>("MyLabel"); newPanel.Add(newLabel);
Provide Feedback