Create Pass Through Point Action Rule

This action rule enables you to define whether to create pass through point for standard openings according to their category.

This page discusses:

General Information

This opening ID is invoked:

  • When standard openings are created.
  • When the category of the opening is edited.

This opening ID is used to customize the visibility of pass through points for standard openings.

Arguments

NameType
InputFeature
CreateBoolean

Sample

The 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
	}
}