FontInfo.Names 属性

定义

获取或设置字体名称的排序数组。

public:
 property cli::array <System::String ^> ^ Names { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.FontNamesConverter))]
public string[] Names { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.FontNamesConverter))>]
member this.Names : string[] with get, set
Public Property Names As String()

属性值

String[]

字体名称的排序数组。

属性

注解

使用 Names 属性指定或确定字体名称 FontInfo的有序数组。 该 Names 属性通常用于存储可用字体名称的列表。

备注

设置 Names 该属性时,该 Name 属性将自动更新为属性中的 Names 第一项。 如果设置该 Name 属性,该 Names 属性将自动更新为包含该属性值的 Name 单个元素数组。

若要指定使用Names数组的FontInfo字体名称,请将数组中的第一个元素设置为要使用的字体名称。 Names由于属性在设置时Name自动更新属性,因此需要操作Names数组以重新排列数组中项的顺序,而不是直接设置Name属性。

此属性的值存储在视图状态中。

适用于

另请参阅