EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Link copied. Please paste this link to share this article on your social media post.
Posted: 2022-12-06 01:27 AM . Last Modified: 2023-05-02 11:50 PM
Hello Everyone,
How can we set value to NoteText for an object in GEOSCADA using API or Code
Appreciate any hints
Thanks in advance
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2022-12-06 01:47 AM . Last Modified: 2022-12-06 01:54 AM
Just set the NoteText or NoteTextLong database field (the same as any other writeable field).
Alternatively, in the .NET Client API set the Notes property in the DBObject class.
For example, using COM automation from JScript in a mimic:
var Object = Server.FindObject( "Fullname of object" );
Object.Interface.NoteText = "My notes";
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2022-12-06 01:47 AM . Last Modified: 2022-12-06 01:54 AM
Just set the NoteText or NoteTextLong database field (the same as any other writeable field).
Alternatively, in the .NET Client API set the Notes property in the DBObject class.
For example, using COM automation from JScript in a mimic:
var Object = Server.FindObject( "Fullname of object" );
Object.Interface.NoteText = "My notes";
Link copied. Please paste this link to share this article on your social media post.
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.