Share via


PrintStringProperty Kelas

Definisi

String Mewakili properti (dan nilainya) dari komponen perangkat keras atau perangkat lunak sistem pencetakan.

public ref class PrintStringProperty sealed : System::Printing::IndexedProperties::PrintProperty
[System.Serializable]
public sealed class PrintStringProperty : System.Printing.IndexedProperties.PrintProperty
public sealed class PrintStringProperty : System.Printing.IndexedProperties.PrintProperty
[<System.Serializable>]
type PrintStringProperty = class
    inherit PrintProperty
type PrintStringProperty = class
    inherit PrintProperty
Public NotInheritable Class PrintStringProperty
Inherits PrintProperty
Warisan
PrintStringProperty
Atribut

Contoh

Contoh berikut menunjukkan cara menggunakan kelas ini untuk menginstal printer kedua yang berbeda dalam propertinya hanya dari printer yang ada di lokasi, port, dan status berbagi.

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()

Konstruktor

PrintStringProperty(String)

Menginisialisasi instans PrintStringProperty baru kelas untuk properti yang ditentukan.

PrintStringProperty(String, Object)

Menginisialisasi instans PrintStringProperty baru kelas yang memiliki nilai yang ditentukan untuk properti yang ditentukan.

Properti

IsDisposed

Mendapatkan atau menetapkan nilai yang menunjukkan apakah objek telah dibuang.

(Diperoleh dari PrintProperty)
IsInitialized

Mendapatkan atau menetapkan nilai yang menunjukkan apakah objek telah diinisialisasi.

(Diperoleh dari PrintProperty)
Name

Saat ditimpa di kelas turunan, mendapatkan nama properti yang diwakili objek.

(Diperoleh dari PrintProperty)
Value

Mendapatkan atau mengatur nilai properti yang diwakili PrintStringProperty .

Metode

Dispose()

Merilis semua sumber daya yang sedang digunakan oleh PrintProperty.

(Diperoleh dari PrintProperty)
Dispose(Boolean)

Merilis sumber daya tidak terkelola yang sedang digunakan oleh PrintProperty dan secara opsional merilis sumber daya terkelola.

(Diperoleh dari PrintProperty)
Equals(Object)

Menentukan apakah objek yang ditentukan sama dengan objek saat ini.

(Diperoleh dari Object)
GetHashCode()

Berfungsi sebagai fungsi hash default.

(Diperoleh dari Object)
GetType()

Mendapatkan dari instans Type saat ini.

(Diperoleh dari Object)
InternalDispose(Boolean)

Merilis sumber daya tidak terkelola yang sedang digunakan oleh PrintProperty dan secara opsional merilis sumber daya terkelola.

(Diperoleh dari PrintProperty)
MemberwiseClone()

Membuat salinan dangkal dari saat ini Object.

(Diperoleh dari Object)
OnDeserialization(Object)

Saat ditimpa di kelas turunan, terapkan ISerializable antarmuka dan ajukan peristiwa deserialisasi saat deserialisasi selesai.

(Diperoleh dari PrintProperty)
ToString()

Mengembalikan string yang mewakili objek saat ini.

(Diperoleh dari Object)

Operator

Implicit(PrintStringProperty to String)

Menyediakan konversi implisit ke String nilai dari pointer ke PrintStringProperty.

Berlaku untuk