ShellTreeViewCompare Method |
Compares two ShellTreeNode objects by their ItemIdList.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public int Compare(
Object x,
Object y
)
Public Function Compare (
x As Object,
y As Object
) As Integer
public:
virtual int Compare(
Object^ x,
Object^ y
) sealed
abstract Compare :
x : Object *
y : Object -> int
override Compare :
x : Object *
y : Object -> int
Parameters
- x
- Type: SystemObject
First ShellTreeNode. - y
- Type: SystemObject
Second ShellTreeNode, which will be compared with first one.
Return Value
Type:
Int32
Returns a value less than 0 if x is less than y, 0 if x is eqaul to y and a value greater
than 0 if x is greater than y.
Implements
IComparerCompare(Object, Object)See Also