Value

Inside a Property's write block, the value expression can be used to refer to and access the unnamed parameter that contains the new value being assigned to the property:

property Foo: String
  read fFoo
  write begin
    if Foo ≠ value then
      fFoo := value;
  end;

See Also