PageAdapter.TransformText(String) Metodo

Definizione

Trasforma il testo per il browser di destinazione.

public:
 virtual System::String ^ TransformText(System::String ^ text);
public virtual string TransformText (string text);
abstract member TransformText : string -> string
override this.TransformText : string -> string
Public Overridable Function TransformText (text As String) As String

Parametri

text
String

Oggetto String che rappresenta il testo da trasformare.

Restituisce

String

Oggetto String che contiene il testo trasformato.

Commenti

Il TransformText metodo può essere usato, ad esempio, per trasformare i caratteri di tabulazioni (\t) in interruzioni di riga (\n).

Il TransformText metodo di base restituisce text invariato.

Note per gli eredi

Quando si eredita dalla classe , è possibile eseguire l'override PageAdapter TransformText(String) se un determinato markup ha un costrutto con un modulo diverso da HTML standard. Ad esempio, se un browser richiede un identificatore diverso per un tag rispetto a quello che verrebbe usato in HTML, TransformText(String) è possibile eseguire l'override del metodo per trovare tale tag e modificarlo.

Si applica a

Vedi anche