General InformationThis opening ID is invoked:
This opening ID is used to customize the visibility of pass through points for standard openings. Arguments
SampleThe following sample explains the action rule for computing the pass through points for standard openings according to their categories. let SFD_Opening (SldOpening) let SDD_Opening(SddOpening) let StrCategory(String) set SFD_Opening = Input set SDD_Opening = Input if( NULL <> SFD_Opening ) { set StrCategory = SFD_Opening.Category if("ManHole" == StrCategory ) { Create = FALSE } else if("LighteningHole" == StrCategory ) { Create = TRUE } else if("SldOpening" == StrCategory ) { Create = FALSE } } else if( NULL <> SDD_Opening ) { set StrCategory = SDD_Opening.Category if("ManHole" == StrCategory ) { Create = FALSE } else if("LighteningHole" == StrCategory ) { Create = TRUE } else if("SddOpening" == StrCategory ) { Create = FALSE } } |