Examples: Hue property (ColorObject - Java™)
This agent displays the hue RGB value of the background color of a view.
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();
}
}
}