Giter VIP home page Giter VIP logo

Comments (2)

tnunnink avatar tnunnink commented on July 30, 2024 1

Hi there,

Yes, you just need to set Value to an instance of a ComplexType.

var tag = new Tag { Name = "Test", Value = new ComplexType("My_AOI_Type_Name") };

This may look weird, but it keeps DataType in sync with the actual type of Value for a given tag (so ultimately you have less work to do). ComplexType is a "generic" data type class you can use to build up a data structure dynamically. Meaning, you can add/remove members to ComplexType in order to load data into Logix upon import.

var aoi = new ComplexType("MyAoi");
aoi.Add(new LogixMember("Member01", new DINT(100)));
aoi.Add(new LogixMember("Member02", new TIMER { PRE = 3000 }));
aoi.Add(new LogixMember("Member03", new ComplexType("SubType")));

Or you can do this more concisely from Tag itself.

var tag = new Tag { Name = "Test", Value = new ComplexType("My_AOI_Type_Name") }; 
tag.Add("Member01", new DINT(100));
tag.Add("Member02", new TIMER { PRE = 3000 });
tag.Add("Member03", new ComplexType("SubType"));

Of course, you could create your AOI type using a C# class and derive from ComplexType, but it is not strictly necessary. It just lets you new up instances of your custom type without have to always add all the members this way.

Hopefully this makes sense. Let me know if you need any further clarification.

from l5sharp.

Ryushi5 avatar Ryushi5 commented on July 30, 2024 1

5 Stars man! That was a very detailed answer in a very short time.

That's exactly what I'm looking for. Thank you very much!

from l5sharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.