• [FONT=Arial]I need some help on a HRUL Criteria…[/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]I have written this…[/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]Criteria ALL SCTN WITH ( ATTRIB MATR EQ ID /TYPE-Iz  )[/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]Which works great but when you come to a drawing with a local rule (RRUL) I do not want the hatching rule to work for anything which is including within the RRUL (out of function).[/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]So I would need to write something like[/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]Criteria  ALL SCTN WITH ( ATTRIB MATR EQ ID /TYPE-Iz  ) [COLOR=red]’excluding everything within the RRUL’[/COLOR][/FONT]
    [FONT=Arial] [/FONT]
    [FONT=Arial]Please help![/FONT]
  • GOT IT...

    Criteria  ALL SCTN WITH ( ATTRIB MATR EQ ID /TYPE-Iz  AND MATCHWILD ( ATTRIB NAME OF ZONE  , '*PFR1*' ) )
  • HI


    I can't include a matchwild in a criteria for a RRul.  If i enter:
    CRITERIA ALL SCTN WITH (MATCHWILD ( ATTRIB SPREF , '*/ICHA.2008_SPEC/L_*' ) )

    IT RETURNS:

    (2,462)   TYPE MISMATCH: illegal argument type for MATCHWILD function (two, three or four text arguments expected)
    In line 32 of Command/Form Input

    And its because it expects this:
    CRITERIA ALL  SCTN WITH (MATCHWILD ( 'ATTRIB SPREF' , '*/ICHA.2008_SPEC/L_*' ) )
    a text for the matchwild... obviously it will return nothing because it will not search for the spref of the sctn... it will evaluate a constant text without meaning 'ATTRIB SPREF'

    I really appreciate your help in this.

    thanks in advance
  • [QUOTE=Christiansen;100856]HI


    I can't include a matchwild in a criteria for a RRul.  If i enter:
    CRITERIA ALL SCTN WITH (MATCHWILD ( ATTRIB SPREF , '*/ICHA.2008_SPEC/L_*' ) )

    IT RETURNS:

    (2,462)   TYPE MISMATCH: illegal argument type for MATCHWILD function (two, three or four text arguments expected)
    In line 32 of Command/Form Input

    And its because it expects this:
    CRITERIA ALL  SCTN WITH (MATCHWILD ( 'ATTRIB SPREF' , '*/ICHA.2008_SPEC/L_*' ) )
    a text for the matchwild... obviously it will return nothing because it will not search for the spref of the sctn... it will evaluate a constant text without meaning 'ATTRIB SPREF'

    I really appreciate your help in this.

    thanks in advance

    Have you tried CRITERIA ALL SCTN WITH (MATCHWILD(NAME OF SPREF, '/ICHA.2008_SPEC/L_*')) ?
  • Have you tried CRITERIA ALL SCTN WITH (MATCHWILD(NAME OF SPREF, '/ICHA.2008_SPEC/L_*')) ?


    Works Great!!!  Thanks a lot...


    And, the Rule must be at top (first) of the rules, because at the end doesn't work.   This will help us to show all the DIN Profiles with round corners (the L, UPN profiles dont have straigth edges, so the hidden lines of the flanges are not shown)


    Thanks Frenchy!!!
  • [QUOTE=Christiansen;100920]Works Great!!!  Thanks a lot...


    And, the Rule must be at top (first) of the rules, because at the end doesn't work.   This will help us to show all the DIN Profiles with round corners (the L, UPN profiles dont have straigth edges, so the hidden lines of the flanges are not shown)


    Thanks Frenchy!!!

    hey that's great, happy to help
    Smiley