例: Hue property (ColorObject - Java™)

次のエージェントは、ビューの背景色の色相の RGB 値を表示します。

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("Main View");
      ColorObject color = session.createColorObject();
      color.setNotesColor(view.getBackgroundColor());
      System.out.println(
      "Hue value of Main View background = " + color.getHue());

    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}