- Manuale introduttivo
- Utilizzo del software
- OPC UA
- Oggetti grafici e di layout
- Sessioni e impostazioni locali
- Sviluppo di soluzioni
- Sviluppo di progetti con C#
- NetLogic
- Metodi ed eventi in C#
- Riferimento API C#
- Esempi di applicazione
- Esercitazione dell'interfaccia utente
- Esercitazione sui collegamenti dinamici
- Esercitazione sui logger
- Esercitazione sugli allarmi
- Esercitazione sulle NetLogic
- Riferimento su oggetti e variabili
IUANode.Remove(child)
Removes a project node that corresponds to the C# object passed in the argument.
void Remove(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 Panel1
object is removed from the project:
var myPanel = Project.Current.FindObject("Panel1"); var objToRemove = Project.Current.FindObject("MyLabel"); myPanel.Remove(objToRemove);
Fornire un feedback