Harness proD API Help
EPLAN.Harness.API.DataStructures Namespace / PartVersion Class / PartVersion Constructor
In This Topic
    PartVersion Constructor
    In This Topic
    Overload List
    OverloadDescription
    Create a PartVersion object. The format of version number is <major>.<minor>.<revision> , example: 1.0.15 . If the input is invalid the EPLAN.Harness.API.Exceptions.ArgumentException will be thrown.  
    Create a PartVersion object by the encoded integer number. The input is a number where M - major part, I - minor part, R - revision: MMIIRRRR. For example: 1050007 ->1.5.7 If the input is invalid the EPLAN.Harness.API.Exceptions.ArgumentException will be thrown. See valid ranges in the previous constructor's description.  
    Create an PartVersion object by the string value. The input string must be in this format: <major>.<minor>.<revision> - "1.3.5" <major>.<minor> - "1.3" If the input is invalid the EPLAN.Harness.API.Exceptions.ArgumentException will be thrown.  
    See Also