Examples: IsAccentSensitiveSort property

This agent toggles whether a column is sorted with regard to accent.

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.setAccentSensitiveSort(!vc.isAccentSensitiveSort());
        System.out.println("IsAccentSensitiveSort = " +
          vc.isAccentSensitiveSort());
      }
      else
        System.out.println("Column is not sorted");
        
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}