ReadRangeMask2 (NotesCalendar - Java)
Read-write. Mask that controls the optional property display
for a readRange
operation.
Defined in
NotesCalendarSyntax
int NotesCalendar.getReadRangeMask2()
throws NotesException
void NotesCalendar.setReadRangeMask2(int mask)
throws NotesException
Usage
Before calling readRange, set this mask to designate the properties that you want returned. By default, no properties are returned.The following table specifies
the bit values. Combine values by adding them.
Constant name | Numerical value |
---|---|
NotesCalendar.CS_READ_RANGE_MASK_HASATTACH |
1 |
NotesCalendar.CS_READ_RANGE_MASK_UNID |
2 |
Examples
This agent gets limited calendar and scheduling information for the current user for today and tomorrow.import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
DbDirectory dbdir = session.getDbDirectory("");
Database maildb = dbdir.openMailDatabase();
NotesCalendar cal = session.getCalendar(maildb);
DateTime dt1 = session.createDateTime("Today 08");
DateTime dt2 = session.createDateTime("Tomorrow 17");
int mask2 = NotesCalendar.CS_READ_RANGE_MASK_HASATTACH +
NotesCalendar.CS_READ_RANGE_MASK_UNID;
cal.setReadRangeMask2(mask2);
String calstr = cal.readRange(dt1, dt2);
// Write result to document
Database db = agentContext.getCurrentDatabase();
Document doc = db.createDocument();
doc.appendItemValue("Form", "main");
doc.appendItemValue("subject", "Calendar entry");
RichTextItem body = doc.createRichTextItem("body");
body.appendText(calstr);
doc.save(true, true);
} catch(Exception e) {
e.printStackTrace();
}
}
}