This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 416
11e238a0 f535 d0cd 6ba2 e525824a01e2
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Compares the current object with another object of the same type.
Namespace: netDxf.Objects
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public int CompareTo(
Layout other
)
VB
Public Function CompareTo (
other As Layout
) As Integer
C++
public:
virtual int CompareTo(
Layout^ other
) sealed
F#
abstract CompareTo :
other : Layout -> int
override CompareTo :
other : Layout -> int
- Layout
- An object to compare with this object.
Int32
A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the other parameter. Zero This object is equal to other. Greater than zero This object is greater than other.
IComparable(T).CompareTo(T)