Experimental: this API is experimental and might be changed or removed in the future.

ICustomStyle.ApplyCustomProperty

切换到手册
public void ApplyCustomProperty (string propertyName, ref StyleValue<float> target);
public void ApplyCustomProperty (string propertyName, ref StyleValue<int> target);
public void ApplyCustomProperty (string propertyName, ref StyleValue<bool> target);
public void ApplyCustomProperty (string propertyName, ref StyleValue<Color> target);
public void ApplyCustomProperty (string propertyName, ref StyleValue<T> target);
public void ApplyCustomProperty (string propertyName, ref StyleValue<string> target);

参数

propertyNameUSS 中的属性名称。
target要写入的目标 StyleValue<T> 字段或变量。

描述

将样式属性值读入指定的 StyleValue<T>。

如果 USS 中解析的属性类型对应于指定的目标值,则会发生简单的复制。 否则会发生一些自动转化。 如果 USS 中引用了属性值,则可以将该属性读入 StyleValue<string>,从而让您可以完全控制如何解析该值。