Package org.openntf.domino.nsfdata.structs

Examples of org.openntf.domino.nsfdata.structs.NOTES_COLOR


   * the value of the color. This color value comes from the defines in the file COLORID.H that begin with NOTES_COLOR_xxx
   */
  public NOTES_COLOR getColor() {
    if (getFlags().contains(Flag.HAS_COLOR)) {
      short color = getData().getShort(getData().position() + FONTID.SIZE + 4);
      return new NOTES_COLOR(color);
    }
    return null;
  }
View Full Code Here


  /**
   * @return The color used to draw the line.
   */
  public NOTES_COLOR getColor() {
    return new NOTES_COLOR((Short) getStructElement("Color"));
  }
View Full Code Here

  /**
   * @return The gradient color used to draw the line.
   */
  public NOTES_COLOR getGradientColor() {
    return new NOTES_COLOR((Short) getStructElement("GradientColor"));
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.nsfdata.structs.NOTES_COLOR

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.