TableObjectEquals Method (Object)
|
Check if two TableObject are equal.
Namespace:
DXFReaderNET.Tables
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public override bool Equals(
Object other
)
Public Overrides Function Equals (
other As Object
) As Boolean
public:
virtual bool Equals(
Object^ other
) override
abstract Equals :
other : Object -> bool
override Equals :
other : Object -> bool
VIRTUAL METHOD Equals(
other AS Object
) AS LOGIC
Parameters
- other
- Type: SystemObject
Another TableObject to compare to.
Return Value
Type:
BooleanTrue if two TableObject are equal or false in any other case.
Remarks
Two TableObjects are considered equals if their names are the same, regardless of their internal values.
This is done this way because in a dxf two TableObjects cannot have the same name.
See Also