AppointmentItem.RTFBody-Eigenschaft (Outlook)
Zurück oder legt einen Byte -Array, die den Textkörper des Elements Microsoft Outlook in Rich-Text-Format darstellt. Lese-/Schreibzugriff.
Syntax
Ausdruck. RTFBody
Ausdruck Eine Variable, die ein AppointmentItem-Objekt darstellt.
Hinweise
Verwenden Sie die StrConv-Funktion in Microsoft Visual Basic for Applications (VBA) oder die System.Text.Encoding.AsciiEncoding.GetString()-Methode in C# oder Visual Basic, um ein Bytearray in eine Zeichenfolge zu konvertieren.
Beispiel
Die folgenden Codebeispiele in Microsoft Visual Basic für Applikationen (VBA) und c# wird der Rich-Text-Format-Textkörper des Termins im aktiven Inspektor angezeigt. Ein AppointmentItem-Objekts muss den aktiven Inspektor für diesen Code arbeiten.
Sub GetRTFBodyForMeeting()
Dim oAppt As Outlook.AppointmentItem
Dim strRTF As String
If Application.ActiveInspector.CurrentItem.Class = olAppointment Then
Set oAppt = Application.ActiveInspector.CurrentItem
strRTF = StrConv(oAppt.RTFBody, vbUnicode)
Debug.Print strRTF
End If
End Sub
private void GetRTFBodyForAppt()
{
if (Application.ActiveInspector().CurrentItem is Outlook.AppointmentItem)
{
Outlook.AppointmentItem appt =
Application.ActiveInspector().CurrentItem as Outlook.AppointmentItem;
byte[] byteArray = appt.RTFBody as byte[];
System.Text.Encoding encoding = new System.Text.ASCIIEncoding();
string RTF = encoding.GetString(byteArray);
Debug.WriteLine(RTF);
}
}
Siehe auch
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.