Compares two
FileListItem objects by their ItemIdList with each other.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic override int Compare(
Object x,
Object y
)
Public Overrides Function Compare (
x As Object,
y As Object
) As Integer
public:
virtual int Compare(
Object^ x,
Object^ y
) override
abstract Compare :
x : Object *
y : Object -> int
override Compare :
x : Object *
y : Object -> int Parameters
- x Object
- First FileListItem
- y Object
- Second FileListItem, which will be compared with first one.
Return Value
Int32
Returns a value less than 0 if x is less than y,
0 if x is equal to y and a value greater
than 0 if x is greater than y.
Implements
IComparerCompare(Object, Object)
RemarksUser added columns will be compared by the Text property of the ShellListItems.
See Also