RecognizedWordUnit.DisplayAttributes Свойство

Определение

Получает сведения о форматировании, используемые для создания текстового вывода из текущего экземпляра RecognizedWordUnit.

public:
 property System::Speech::Recognition::DisplayAttributes DisplayAttributes { System::Speech::Recognition::DisplayAttributes get(); };
public System.Speech.Recognition.DisplayAttributes DisplayAttributes { get; }
member this.DisplayAttributes : System.Speech.Recognition.DisplayAttributes
Public ReadOnly Property DisplayAttributes As DisplayAttributes

Значение свойства

DisplayAttributes

Указывает использование пробелов для отображения содержимого объекта RecognizedWordUnit.

Примеры

В следующем примере показана служебная программа ( stringFromWordArray ), которая создает строку, отформатированную одним из трех способов: лексed (using LexicalForm ), нормализованная (using Text ) или фонетическая (using Pronunciation ). Текстовый вывод получается из DisplayAttributes свойства ReadOnlyCollection<T> RecognizedWordUnit объекта, полученного из Words свойства в RecognizedPhrase объекте.

internal enum WordType   
{  
  Text,  
  Normalized = Text,  
  Lexical,  
  Pronunciation  
}  
internal static string stringFromWordArray(  
        ReadOnlyCollection<RecognizedWordUnit> words,   
        WordType type)   
{  
  string text = "";  
  foreach (RecognizedWordUnit word in words)   
  {  
    string wordText = "";  
    if (type == WordType.Text || type == WordType.Normalized)   
    {  
      wordText = word.Text;  
    }   
    else if (type == WordType.Lexical)   
    {  
      wordText = word.LexicalForm;  
    }  
    else if (type == WordType.Pronunciation)   
    {  
       wordText = word.Pronunciation;  
    }   
    else   
    {  
      throw new InvalidEnumArgumentException(  
         String.Format("[0}: is not a valid input", type));  
    }  

    // Use display attribute  
    if ((word.DisplayAttributes & DisplayAttributes.OneTrailingSpace) != 0)   
    {  
      wordText += " ";  
    }  
    if ((word.DisplayAttributes & DisplayAttributes.TwoTrailingSpaces) != 0)  
    {  
      wordText += "  ";  
    }  
    if ((word.DisplayAttributes & DisplayAttributes.ConsumeLeadingSpaces) != 0)   
    {  
      wordText = wordText.TrimStart();  
    }  
    if ((word.DisplayAttributes & DisplayAttributes.ZeroTrailingSpaces) != 0)  
    {  
      wordText = wordText.TrimEnd();  
    }  

    text += wordText;  

  }  
  return text;  
}  

Комментарии

DisplayAttributesОбъект, возвращаемый DisplayAttributes свойством, указывает начальные и конечные пробелы для использования с данным словом, если таковые имеются.

Дополнительные сведения об использовании этих сведений о форматировании см. в разделе DisplayAttributes перечисление.

Применяется к

См. также раздел