/// /// <summary> * (9) get attribute MarkOrientation </summary> /// * <returns> the value of the attribute </returns> /// public virtual EnumMarkOrientation getMarkOrientation() { return(EnumMarkOrientation.getEnum(getAttribute(AttributeName.MARKORIENTATION, null, null))); }
static JDFAutoDeviceMark() { atrInfoTable[0] = new AtrInfoTable(AttributeName.FONT, 0x33333331, AttributeInfo.EnumAttributeType.NMTOKEN, null, null); atrInfoTable[1] = new AtrInfoTable(AttributeName.FONTSIZE, 0x33333331, AttributeInfo.EnumAttributeType.integer, null, null); atrInfoTable[2] = new AtrInfoTable(AttributeName.MARKJUSTIFICATION, 0x33333331, AttributeInfo.EnumAttributeType.enumeration, EnumMarkJustification.getEnum(0), null); atrInfoTable[3] = new AtrInfoTable(AttributeName.MARKOFFSET, 0x33333331, AttributeInfo.EnumAttributeType.XYPair, null, null); atrInfoTable[4] = new AtrInfoTable(AttributeName.MARKORIENTATION, 0x33333331, AttributeInfo.EnumAttributeType.enumeration, EnumMarkOrientation.getEnum(0), null); atrInfoTable[5] = new AtrInfoTable(AttributeName.MARKPOSITION, 0x33333331, AttributeInfo.EnumAttributeType.enumeration, EnumMarkPosition.getEnum(0), null); }
// --------------------------------------------------------------------- // Methods for Attribute MarkOrientation // --------------------------------------------------------------------- /// /// <summary> * (5) set attribute MarkOrientation </summary> /// * <param name="enumVar">: the enumVar to set the attribute to </param> /// public virtual void setMarkOrientation(EnumMarkOrientation enumVar) { setAttribute(AttributeName.MARKORIENTATION, enumVar == null ? null : enumVar.getName(), null); }