Hi,
TTMSFMXEdit inherits from TEdit so you can access SetAdjustType outside of TTMSFMXEdit by using the following code and a protected class declaration:
type
TTMSFMXEditEx = class(TTMSFMXEdit);
....
TTMSFMXEditEx(TMSFMXEdit1).SetAdjustType(TAdjustType.None);
We don't see a reason to add support for this if this isn't supported directly on TEdit. Supporting this will only increase the chance that something might get broken in newer versions of RAD Studio.
Kind Regards,
Pieter