Customer Portal

how to pass a GraphElement

Comments 1

  • Avatar
    jraszyk
    0
    Comment actions Permalink
    Similarly to you other question, getGraph() function is the key.
    For example to access components, connections or metadata:

    Node node = getGraph().getNodes().get("READER0");
    IConnection connection = getGraph().getConnection("MyConnection");
    getGraph().getDataRecordMetadata("MyMetadata");

Please sign in to leave a comment.