Examples: IsResortDescending property

This agent toggles whether a column is descending user-sorted, and displays the user-sort attributes of the column.

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("All Documents");
      ViewColumn vc = view.getColumn(1);
      vc.setResortDescending(!vc.isResortDescending());
      System.out.println("IsResortAscending = " + vc.isResortAscending());
      System.out.println("IsResortDescending = " + vc.isResortDescending());
      System.out.println("IsResortToView = " + vc.isResortToView());
        
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}