ModelPath.Compare Method

ModelPathCompare Method

Compares this ModelPath with another

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public int Compare(
	ModelPath otherPath
)
Public Function Compare ( 
	otherPath As ModelPath
) As Integer
public:
int Compare(
	ModelPath^ otherPath
)
member Compare : 
        otherPath : ModelPath -> int 

Parameters

otherPath  ModelPath
The path to compare against.

Return Value

Int32
A signed integer indicating the lexical relationship between two ModelPaths. Value is less than zero if this path is less than the given path; zero if the two are the same; and more than zero otherwise
Exceptions
ExceptionCondition
ArgumentNullException A non-optional argument was null
Remarks
The comparison is case-insensitive.
See Also