Examples: IsCaseSensitiveSort property
This agent toggles whether a column is sorted with regard to case.
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
Database db = agentContext.getCurrentDatabase();
View view = db.getView("By category");
ViewColumn vc = view.getColumn(1);
if (vc.isSorted()) {
vc.setCaseSensitiveSort(!vc.isCaseSensitiveSort());
System.out.println("IsCaseSensitiveSort = " +
vc.isCaseSensitiveSort());
}
else
System.out.println("Column is not sorted");
} catch(Exception e) {
e.printStackTrace();
}
}
}