Skip navigation links
JNA API 5.6.0
com.sun.jna.platform.win32

Class Winspool.PRINTER_INFO_2

  • Enclosing interface:
    Winspool


    @Structure.FieldOrder(value={"pServerName","pPrinterName","pShareName","pPortName","pDriverName","pComment","pLocation","pDevMode","pSepFile","pPrintProcessor","pDatatype","pParameters","pSecurityDescriptor","Attributes","Priority","DefaultPriority","StartTime","UntilTime","Status","cJobs","AveragePPM"})
    public static class Winspool.PRINTER_INFO_2
    extends Structure
    The PRINTER_INFO_2 structure specifies detailed printer information.
    Author:
    Ivan Ridao Freitas, Padrus
    See Also:
    PRINTER_INFO_2 structure
    • Field Detail

      • pServerName

        public java.lang.String pServerName
        A pointer to a null-terminated string identifying the server that controls the printer. If this string is NULL, the printer is controlled locally.
      • pPrinterName

        public java.lang.String pPrinterName
        A pointer to a null-terminated string that specifies the name of the printer.
      • pShareName

        public java.lang.String pShareName
        A pointer to a null-terminated string that identifies the share point for the printer. (This string is used only if the PRINTER_ATTRIBUTE_SHARED constant was set for the Attributes member.)
      • pPortName

        public java.lang.String pPortName
        A pointer to a null-terminated string that identifies the port(s) used to transmit data to the printer. If a printer is connected to more than one port, the names of each port must be separated by commas (for example, "LPT1:,LPT2:,LPT3:").
      • pDriverName

        public java.lang.String pDriverName
        A pointer to a null-terminated string that specifies the name of the printer driver.
      • pComment

        public java.lang.String pComment
        A pointer to a null-terminated string that provides a brief description of the printer.
      • pLocation

        public java.lang.String pLocation
        A pointer to a null-terminated string that specifies the physical location of the printer (for example, "Bldg. 38, Room 1164").
      • pDevMode

        public WinDef.INT_PTR pDevMode
        A pointer to a DEVMODE structure that defines default printer data such as the paper orientation and the resolution.
      • pSepFile

        public java.lang.String pSepFile
        A pointer to a null-terminated string that specifies the name of the file used to create the separator page. This page is used to separate print jobs sent to the printer.
      • pPrintProcessor

        public java.lang.String pPrintProcessor
        A pointer to a null-terminated string that specifies the name of the print processor used by the printer. You can use the EnumPrintProcessors function to obtain a list of print processors installed on a server.
      • pDatatype

        public java.lang.String pDatatype
        A pointer to a null-terminated string that specifies the data type used to record the print job. You can use the EnumPrintProcessorDatatypes function to obtain a list of data types supported by a specific print processor.
      • pParameters

        public java.lang.String pParameters
        A pointer to a null-terminated string that specifies the default print-processor parameters.
      • pSecurityDescriptor

        public WinDef.INT_PTR pSecurityDescriptor
        A pointer to a SECURITY_DESCRIPTOR structure for the printer. This member may be NULL.
      • Attributes

        public int Attributes
        The printer attributes. This member can be any reasonable combination of the values PRINTER_ATTRIBUTE_XXX.
      • Priority

        public int Priority
        A priority value that the spooler uses to route print jobs.
      • DefaultPriority

        public int DefaultPriority
        The default priority value assigned to each print job.
      • StartTime

        public int StartTime
        The earliest time at which the printer will print a job. This value is expressed as minutes elapsed since 12:00 AM GMT (Greenwich Mean Time).
      • UntilTime

        public int UntilTime
        The latest time at which the printer will print a job. This value is expressed as minutes elapsed since 12:00 AM GMT (Greenwich Mean Time).
      • Status

        public int Status
        The printer status. This member can be any reasonable combination of the values PRINTER_STATUS_XXX.
      • cJobs

        public int cJobs
        The number of print jobs that have been queued for the printer.
      • AveragePPM

        public int AveragePPM
        The average number of pages per minute that have been printed on the printer.
    • Constructor Detail

      • PRINTER_INFO_2

        public PRINTER_INFO_2()
      • PRINTER_INFO_2

        public PRINTER_INFO_2(int size)
    • Method Detail

      • hasAttribute

        public boolean hasAttribute(int value)
        Checks if the printer attributes have one of the values PRINTER_ATTRIBUTE_XXX.
JNA API 5.6.0

Copyright © 2007-2018 Timothy Wall. All Rights Reserved.