FMX.StdActns.TBaseValueRange.Same

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Same(Obj: TBaseValueRange): boolean; virtual;

C++

virtual bool __fastcall Same(TBaseValueRange* Obj);

Properties

Type Visibility Source Unit Parent
function public
FMX.StdActns.pas
FMX.StdActns.hpp
FMX.StdActns TBaseValueRange

Description

Checks whether the values of all properties of the current object are close to the values of the corresponding properties of the specified Obj object.

This function is similar to Equals, but it uses the SameValue function to compare values. That is, if between the values there is a difference that is less than the possible rounding error, then the SameValue function estimates the values as equal and Same returns True.

See Also