TTMSFMXEdit Replace not implemented

Hi,


Just wanted to use to TTMSFMXEdit.Replace method.
But it seems not to be implemented (yet).

procedure TTMSFMXCustomEditEx.Replace(const AStartPos, ALength: Integer;
  const AStr: string);
begin

end;

Hi, 


The Replace method is protected, so it's unclear how exactly you are using this method?

In a descendant Class TMyEdit.

TTMSFMXCustomEditEx is a replacement for TEdit, which preserves backwards compatibility with XE7. At that time, the Replace method was empty. But if we look at the TEdit current status in RAD Studio Tokyo, we also see an empty Replace method. 




procedure TCustomEdit.Replace(const AStartPos, ALength: Integer; const AStr: string);
begin
end;

Ok, needed the function. :-)


Pity it isn't implemented.
For now I've implemented the Replace myself.
I always like to use available/existing functionality.

So, no problem.
Was just curious.
You can close the issue.

Thx for the speedy reponse..