RoutingPreferenceManager.GetSharedSizes Method

RoutingPreferenceManagerGetSharedSizes Method

Gets a list of all segments of a given profile shape that define a given size.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public IList<ElementId> GetSharedSizes(
	double size,
	ConnectorProfileType shape
)
Public Function GetSharedSizes ( 
	size As Double,
	shape As ConnectorProfileType
) As IList(Of ElementId)
public:
IList<ElementId^>^ GetSharedSizes(
	double size, 
	ConnectorProfileType shape
)
member GetSharedSizes : 
        size : float * 
        shape : ConnectorProfileType -> IList<ElementId> 

Parameters

size  Double
The size to search for.
shape  ConnectorProfileType
The profile shape of segment object.

Return Value

IListElementId
A list of all segments that define a given size.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException A value passed for an enumeration argument is not a member of that enumeration
See Also