FontNamesConverter.ConvertFrom 方法    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将表示字体名称列表的字符串转换为包含个别字体名称的字符串数组。
public:
 override System::Object ^ ConvertFrom(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::Object ^ value);
	public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value);
	override this.ConvertFrom : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * obj -> obj
	Public Overrides Function ConvertFrom (context As ITypeDescriptorContext, culture As CultureInfo, value As Object) As Object
	参数
- context
 - ITypeDescriptorContext
 
提供类型转换器上下文信息的 ITypeDescriptorContext 对象。 该方法中不使用此参数。 保留它以供该方法的未来版本使用。 可以选择为该参数传入 null。
- culture
 - CultureInfo
 
表示语言、日历系统等区域性信息的 CultureInfo 对象。 该方法中不使用此参数。 保留它以供该方法的未来版本使用。 可以选择为该参数传入 null。
返回
表示包含个别字体名称的字符串数组的 Object 实例。
例外
              value 的类型不是 String。
示例
下面的代码示例演示如何使用 ConvertFrom 方法将具有字体名称列表的字符串转换为包含各个名称的字符串数组。
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>FontNamesConverter Example</title>
<script language="C#" runat="server">
      void Page_Load(Object sender, EventArgs e) 
      {
         // Declare local variables.
         System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en");
         System.ComponentModel.ITypeDescriptorContext context = null;
         Object names; 
         Object name_string;
         // Create FontNamesConverter object.
         FontNamesConverter fontconverter = new FontNamesConverter();
         // Create original list of fonts.
         string font_list = "arial, times new roman, verdana";
         // Check for type compatibility.
         if (fontconverter.CanConvertFrom(context, typeof(string)))
         {
            // Display original string.
            Label1.Text = "Original String :" + "<br /><br />" + font_list;
            // Convert string to array to strings and display results.
            names = fontconverter.ConvertFrom(context, culture, font_list);
            Label2.Text = "Converted to Array of Strings : " + "<br /><br />";
            foreach (string name_element in (string[])names)
            {
               Label2.Text += name_element + "<br />";
            }
            // Convert array of strings back to a string and display results.
            name_string = fontconverter.ConvertTo(context, culture, names, typeof(string)); 
            Label3.Text = "Converted back to String :" + "<br /><br />" + (string)name_string;
         }
          
      }
   </script>
</head>
<body>
   <h3>FontNamesConverter Example</h3>
   <br />
   <form id="form1" runat="server">
        
      <asp:Label id="Label1" runat="server"/>
      <br /><hr />
      <asp:Label id="Label2" runat="server"/>
      <br /><hr />
      <asp:Label id="Label3" runat="server"/>
        
   </form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>FontNamesConverter Example</title>
<script language="VB" runat="server">
    Sub Page_Load(sender As Object, e As EventArgs)
        
        ' Declare local variables.
        Dim culture As New System.Globalization.CultureInfo("en")
        Dim context As System.ComponentModel.ITypeDescriptorContext = Nothing
        Dim names As Object
        Dim name_string As Object
        
        ' Create FontNamesConverter object.
        Dim fontconverter As New FontNamesConverter()
        
        ' Create original list of fonts.
        Dim font_list As String = "arial, times new roman, verdana"
        
        ' Check for type compatibility.
        If fontconverter.CanConvertFrom(context, GetType(String)) Then
            
            ' Display original string.
            Label1.Text = "Original String :" & "<br /><br />" & font_list
            
            ' Convert string to array to strings and display results.
            names = fontconverter.ConvertFrom(context, culture, font_list)
            Label2.Text = "Converted to Array of Strings : " & "<br /><br />"
            Dim name_element As String
            For Each name_element In CType(names, String())
                Label2.Text &= name_element & "<br />"
            Next name_element
            
            ' Convert array of strings back to a string and display results.
            name_string = fontconverter.ConvertTo(context, culture, names, _
                GetType(String))
            Label3.Text = "Converted back to String :" & "<br /><br />" & _
                CType(name_string, String)
        End If 
    End Sub 'Page_Load
  </script>
</head>
<body>
   <h3>FontNamesConverter Example</h3>
   <br />
   <form id="form1" runat="server">
        
      <asp:Label id="Label1" runat="server"/>
      <br /><hr />
      <asp:Label id="Label2" runat="server"/>
      <br /><hr />
      <asp:Label id="Label3" runat="server"/>
        
   </form>
</body>
</html>
	注解
ConvertFrom使用 方法可将包含字体名称列表的字符串转换为包含各个名称的字符串数组。 字符串中的每个字体名称都必须用逗号分隔。 例如,字符串“arial, times new roman, verdana”转换为包含字符串“arial”、“times new roman”和“verdana”的数组。 请注意,将删除逗号以及字体名称开头或末尾的任何空格。 不会删除字体名称中间的空格。
注意
              context和 culture 参数不在此版本的 方法中使用;它们保留给该方法的未来版本。 可以选择为这些参数传入 null 。