RegionOuterBoundaries


Returns the top, right, bottom and left boundaries of the input region.

Syntax

C++
C#
Python
 
def RegionOuterBoundaries(
	inRegion: Region,
	/
)
-> (
	outTopBoundary: list[Location],
	outRightBoundary: list[Location],
	outBottomBoundary: list[Location],
	outLeftBoundary: list[Location]
)

Parameters

Name Type Default Description
Input value inRegion Region Input region
Output value outTopBoundary list[Location]
Output value outRightBoundary list[Location]
Output value outBottomBoundary list[Location]
Output value outLeftBoundary list[Location]