哪个与 TAlphaColor 的 StringToColor 函数等效?
我正在寻找与 Graphics.StringToColor
转换函数 一个 TAlphaColor
的字符串(Firemonkey 使用的颜色类型)。我在在线 Rad Studio 帮助以及相关的 firemokey 单元中进行了搜索,但没有运气:(我可以轻松编写一个函数来转换这些值,但我更喜欢使用 RTL 函数。有人知道 delphi-xe2 中是否存在将字符串转换为 TAlphaColor 的函数吗?
I'm looking for the equivalent to the Graphics.StringToColor
function to convert
a string to an TAlphaColor
(Color type used by Firemonkey). I searched in the online Rad Studio help as well as in the related firemokey units without luck :(. I can write easily a function to convert these values but I prefear use a RTL function. Anybody knows if exist any function to convert a String to a TAlphaColor in delphi-xe2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,存在这样的函数,称为 StringToAlphaColor ,并在 System.UIConsts 单元中声明。
Yes exist such function and is called
StringToAlphaColor
and is declarated in theSystem.UIConsts
unit.