Add pipeline property value to pipeline ISO continuation label

How can I modify the pipeline continuation label so it will display the value of property DWG_NR under pipeline properties? DWG_NR is a custom property added by myself.

Currently the Continuation label shows the name of pipeline but it would be more useful if it will show the property DWG_NR contents, which in this case is DWG-12345. Is this modification possible?

Parents Reply
  • Dear Tuomas, 

    You can achieve it as per below guidelines: 

    1. Create a property say DWG_NO inside ISO_SHEET class. Add expression which cascades Pipeline property value on it. Refer wiki below where similar expression used to cascade property info from pipeline class. Here in your case it should be:
      this.GetRelatedInstance("PIPING_NETWORK_SYSTEM_HAS_ISO_SHEET:1:PIPING_NETWORK_SYSTEM").DWG_NR 
      Applies To Product(s): OpenPlant Isometrics Manager Version(s): 08.11.09.XXX (SS5) | 08.11.11.XXX (SS6) Environment: Windows 7/8.1/10 ( 64 bit & Others) Area: Settings…
      Last edited in OpenPlant | AutoPLANT > OpenPlant | AutoPLANT Wiki
       
    2. Further on ISO_SHEET class tab, add property DWG_NO inside Continuation expression Custom Attribute present on ISO_SHEET Class tab. 
      something like: " : " & this.DWG_NO 

    To note: Currently Continuation should always contain Name and further any addition will be an extra information here.

    HTH,

    Regards,

    Rahul Kumar

    Product Engineer – Global Technical Support | Community Moderator

    Answer Verified By: Tuomas Takkinen 

Children