requestInfo (NotesCalendarEntry - JavaScript)

会議エントリの情報を要求します。

定義場所

NotesCalendarEntry

構文

requestInfo(comments:string) : void
パラメータ 説明
comments 要求に関するコメント。
可能性のある例外 テキスト 説明
NotesError.NOTES_ERR_INVALIDID 4757 無効 ID NotesCalendarEntry オブジェクトの識別子が無効です。
NotesError.NOTES_ERR_RECURID_NOTFOUND 4808 反復識別子が見つかりません。 NotesCalendarEntry オブジェクトの反復識別子が無効です。
NotesError.NOTES_ERR_IDNOTFOUND 4814 ID が見つかりません NotesCalendarEntry オブジェクトの反復識別子がカレンダーのエントリを示していないか、 反復識別子の scoperecurid がありません。

使用法

このメソッドは会議のエントリを処理し、通知は処理しません。

このボタンイベントは、会議に関する情報を要求します。
var dbdir:NotesDbDirectory = session.getDbDirectory("");
var maildb:NotesDatabase = dbdir.openMailDatabase();
var cal:NotesCalendar = session.getCalendar(maildb);
var unid:string = sessionScope.unid;
var cale:NotesCalendarEntry = cal.getEntryByUNID(unid);
cale.requestInfo("Reconsidering");
requestScope.status = "Calendar entry for UNID " + unid + " info requested¥n";

LotusScript® 構文と例

NotesCalendarEntry.RequestInfo(Byval comments As String)

Java™ 構文と例

void NotesCalendarEntry.requestInfo(String comments)