NotesDocument
へのリンクを追加しようとしていますが、実際のリンクとは異なる表示名が必要です。NotesDocument NotesRichtextItemとしてHotSpot/Hyperlinkを追加します
どうすればC#-codeでこれを行うことができますか? NotesMIMEEntity
は使用できません。
これまで私が行ってきたことです。 Buは私は残念ながら、任意のリンクでこれを行うには私の知っている方法はありません
NotesSession nSession = new Domino.NotesSession();
nSession.Initialize(pw);
NotesDatabase nDatabase = nSession.GetDatabase("SERVER", "names");
Domino.NotesDocument nDocument = nDatabase.CreateDocument();
nDocument.ReplaceItemValue("Subject", "Test");
NotesRichTextItem rtItem;
rtItem= nDocument.CreateRichTextItem("Body");
rtItem.AppendText("http://google.com"); //I cannot see a "AppendLink" Method or sth. alike
nDocument.Send(false,"[email protected]");
私はオフィスに戻ってすぐに来週にそれを試してみます。 –