跳转至

7.get_tag_desc

函数声明

C
    char* py_get_tag_desc(const char *tag_name);
  • 描述

    根据测点名称取出测点的物模型标识(测点描述),请勿传入错误的测点名称,这将导致函数返回NULL。

  • 参数

    tag_name:测点的名称。

  • 返回值

    返回测点的物模型标识(测点描述)。

  • 示例

Python
    # 在脚本中导入c4py库
    import c4py
    # 使用c4py库
    c4py.py_load_so()
    c4py.global_init()
    for i in range(0,11):
        tagN = "YC" + str(i)
        tagV = c4py.get_tag_value(tagN.encode())
        tagD = c4py.get_tag_desc(tagN.encode()).decode()
        c4py.clog_info("tag n:{},d:{},v:{}".format(tagN,tagD,tagV).encode())
    c4py.global_release()