PrintBooleanProperty Clase
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Representa una propiedad Boolean (y su valor) de un componente de hardware o software del sistema de impresión.
public ref class PrintBooleanProperty sealed : System::Printing::IndexedProperties::PrintProperty
public sealed class PrintBooleanProperty : System.Printing.IndexedProperties.PrintProperty
type PrintBooleanProperty = class
inherit PrintProperty
Public NotInheritable Class PrintBooleanProperty
Inherits PrintProperty
- Herencia
Ejemplos
En el ejemplo siguiente se muestra cómo usar esta clase al instalar una segunda impresora cuyas propiedades difieren de una impresora existente solo en la ubicación, el puerto y el estado compartido.
LocalPrintServer myLocalPrintServer = new LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer);
PrintQueue sourcePrintQueue = myLocalPrintServer.DefaultPrintQueue;
PrintPropertyDictionary myPrintProperties = sourcePrintQueue.PropertiesCollection;
// Share the new printer using Remove/Add methods
PrintBooleanProperty shared = new PrintBooleanProperty("IsShared", true);
myPrintProperties.Remove("IsShared");
myPrintProperties.Add("IsShared", shared);
// Give the new printer its share name using SetProperty method
PrintStringProperty theShareName = new PrintStringProperty("ShareName", "\"Son of " + sourcePrintQueue.Name +"\"");
myPrintProperties.SetProperty("ShareName", theShareName);
// Specify the physical location of the new printer using Remove/Add methods
PrintStringProperty theLocation = new PrintStringProperty("Location", "the supply room");
myPrintProperties.Remove("Location");
myPrintProperties.Add("Location", theLocation);
// Specify the port for the new printer
String[] port = new String[] { "COM1:" };
// Install the new printer on the local print server
PrintQueue clonedPrinter = myLocalPrintServer.InstallPrintQueue("My clone of " + sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties);
myLocalPrintServer.Commit();
// Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName);
Console.WriteLine("Press Return to continue ...");
Console.ReadLine();
Dim myLocalPrintServer As New LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer)
Dim sourcePrintQueue As PrintQueue = myLocalPrintServer.DefaultPrintQueue
Dim myPrintProperties As PrintPropertyDictionary = sourcePrintQueue.PropertiesCollection
' Share the new printer using Remove/Add methods
Dim [shared] As New PrintBooleanProperty("IsShared", True)
myPrintProperties.Remove("IsShared")
myPrintProperties.Add("IsShared", [shared])
' Give the new printer its share name using SetProperty method
Dim theShareName As New PrintStringProperty("ShareName", """Son of " & sourcePrintQueue.Name & """")
myPrintProperties.SetProperty("ShareName", theShareName)
' Specify the physical location of the new printer using Remove/Add methods
Dim theLocation As New PrintStringProperty("Location", "the supply room")
myPrintProperties.Remove("Location")
myPrintProperties.Add("Location", theLocation)
' Specify the port for the new printer
Dim port() As String = { "COM1:" }
' Install the new printer on the local print server
Dim clonedPrinter As PrintQueue = myLocalPrintServer.InstallPrintQueue("My clone of " & sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties)
myLocalPrintServer.Commit()
' Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName)
Console.WriteLine("Press Return to continue ...")
Console.ReadLine()
Constructores
PrintBooleanProperty(String) |
Inicializa una instancia nueva de la clase PrintBooleanProperty para el atributo especificado. |
PrintBooleanProperty(String, Object) |
Inicializa una instancia nueva de la clase PrintBooleanProperty para la propiedad especificada que está utilizando el valor especificado. |
Propiedades
IsDisposed |
Obtiene o establece un valor que indica si el objeto se ha eliminado. (Heredado de PrintProperty) |
IsInitialized |
Obtiene o establece un valor que indica si el objeto se ha inicializado. (Heredado de PrintProperty) |
Name |
Cuando se invalida en una clase derivada, obtiene el nombre de la propiedad representada por el objeto. (Heredado de PrintProperty) |
Value |
Obtiene o establece el valor de la propiedad representada por PrintBooleanProperty. |
Métodos
Dispose() |
Libera todos los recursos utilizados por PrintProperty. (Heredado de PrintProperty) |
Dispose(Boolean) |
Libera los recursos no administrados utilizados por PrintProperty y, de forma opcional, libera los recursos administrados. (Heredado de PrintProperty) |
Equals(Object) |
Determina si el objeto especificado es igual que el objeto actual. (Heredado de Object) |
GetHashCode() |
Sirve como la función hash predeterminada. (Heredado de Object) |
GetType() |
Obtiene el Type de la instancia actual. (Heredado de Object) |
InternalDispose(Boolean) |
Libera los recursos no administrados utilizados por PrintProperty y, de forma opcional, libera los recursos administrados. (Heredado de PrintProperty) |
MemberwiseClone() |
Crea una copia superficial del Object actual. (Heredado de Object) |
OnDeserialization(Object) |
Cuando se invalida en una clase derivada, implementa la interfaz ISerializable y provoca el evento de deserialización cuando la deserialización ha finalizado. (Heredado de PrintProperty) |
ToString() |
Devuelve una cadena que representa el objeto actual. (Heredado de Object) |
Operadores
Implicit(PrintBooleanProperty to Boolean) |
Proporciona la conversión implícita en un valor de tipo Boolean de un puntero a un objeto PrintBooleanProperty. |