コード例 #1
0
 ///
 ///          <summary> * (9) get attribute ProofRenderingIntent </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumProofRenderingIntent getProofRenderingIntent()
 {
     return(EnumProofRenderingIntent.getEnum(getAttribute(AttributeName.PROOFRENDERINGINTENT, null, "Perceptual")));
 }
コード例 #2
0
 static JDFAutoProofingParams()
 {
     atrInfoTable[0]  = new AtrInfoTable(AttributeName.DISPLAYTRAPS, 0x44444433, AttributeInfo.EnumAttributeType.boolean_, null, "false");
     atrInfoTable[1]  = new AtrInfoTable(AttributeName.HALFTONE, 0x44444433, AttributeInfo.EnumAttributeType.boolean_, null, "false");
     atrInfoTable[2]  = new AtrInfoTable(AttributeName.IMAGEVIEWINGSTRATEGY, 0x44444433, AttributeInfo.EnumAttributeType.string_, null, "NoImages");
     atrInfoTable[3]  = new AtrInfoTable(AttributeName.MANUALFEED, 0x44444431, AttributeInfo.EnumAttributeType.boolean_, null, "false");
     atrInfoTable[4]  = new AtrInfoTable(AttributeName.PROOFRENDERINGINTENT, 0x44444431, AttributeInfo.EnumAttributeType.enumeration, EnumProofRenderingIntent.getEnum(0), "Perceptual");
     atrInfoTable[5]  = new AtrInfoTable(AttributeName.PROOFTYPE, 0x44444433, AttributeInfo.EnumAttributeType.enumeration, EnumProofType.getEnum(0), "None");
     atrInfoTable[6]  = new AtrInfoTable(AttributeName.COLORTYPE, 0x44444433, AttributeInfo.EnumAttributeType.enumeration, EnumColorType.getEnum(0), null);
     atrInfoTable[7]  = new AtrInfoTable(AttributeName.RESOLUTION, 0x44444433, AttributeInfo.EnumAttributeType.XYPair, null, null);
     elemInfoTable[0] = new ElemInfoTable(ElementName.FILESPEC, 0x77777766);
     elemInfoTable[1] = new ElemInfoTable(ElementName.MEDIA, 0x77777766);
 }
コード例 #3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute ProofRenderingIntent
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute ProofRenderingIntent </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setProofRenderingIntent(EnumProofRenderingIntent enumVar)
 {
     setAttribute(AttributeName.PROOFRENDERINGINTENT, enumVar == null ? null : enumVar.getName(), null);
 }