BaseMetafileCommandIsEqual Method |
Checks if two objects of type BaseMetafileCommand (or a derived class)
are equal to each other. All position values must differ less than delta
d to be considered as equal.
Angles, axes ratios and the check on collinearity of lines are using
the fixed value 0.01 rad.
Namespace: RAYLASE.Marker.VectorGraphicElement.MetafileCommandAssembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntaxpublic virtual bool IsEqual(
Object obj,
double delta = 500
)
Parameters
- obj Object
- The other object to compare.
- delta Double (Optional)
- The delta; a double value is allowed to differ from
its counterpart in the other object only less than this value (given
micrometers) to be considered as equal.
Return Value
Booleantrue, if obj is equal to this.
See Also