GetSpecifiedPrinterPaperSource
Innehåll
[
Dölj
]PageInfo.GetSpecifiedPrinterPaperSource method
FårPaperSource objekt som är lämpligt för utskrift sidan som representeras av dettaPageInfo
.
public PaperSource GetSpecifiedPrinterPaperSource(PaperSourceCollection paperSources,
PaperSource defaultPageSettingsPaperSource)
Parameter | Typ | Beskrivning |
---|---|---|
paperSources | PaperSourceCollection | Tillgängliga papperskällor. |
defaultPageSettingsPaperSource | PaperSource | Papperskälla definierad i standardskrivarinställningar. |
Returvärde
Ett objekt som du kan använda i .NET-utskriftsramverket för att ange papperskällan.
Anmärkningar
Denna metod kräver .NET Framework 2.0 eller senare.
Exempel
Visar hur du skriver ut information om sidstorlek och orientering för varje sida i ett Word-dokument.
Document doc = new Document(MyDir + "Rendering.docx");
// Det första avsnittet har 2 sidor. Vi kommer att tilldela ett annat skrivarpappersfack till var och en,
// vars nummer kommer att matcha en sorts papperskälla. Dessa källor och deras slag kommer att variera
// beroende på den installerade skrivardrivrutinen.
PrinterSettings.PaperSourceCollection paperSources = new PrinterSettings().PaperSources;
doc.FirstSection.PageSetup.FirstPageTray = paperSources[0].RawKind;
doc.FirstSection.PageSetup.OtherPagesTray = paperSources[1].RawKind;
Console.WriteLine("Document \"{0}\" contains {1} pages.", doc.OriginalFileName, doc.PageCount);
float scale = 1.0f;
float dpi = 96;
for (int i = 0; i < doc.PageCount; i++)
{
// Varje sida har ett PageInfo-objekt, vars index är respektive sidas nummer.
PageInfo pageInfo = doc.GetPageInfo(i);
// Skriv ut sidans orientering och mått.
Console.WriteLine($"Page {i + 1}:");
Console.WriteLine($"\tOrientation:\t{(pageInfo.Landscape ? "Landscape" : "Portrait")}");
Console.WriteLine($"\tPaper size:\t\t{pageInfo.PaperSize} ({pageInfo.WidthInPoints:F0}x{pageInfo.HeightInPoints:F0}pt)");
Console.WriteLine($"\tSize in points:\t{pageInfo.SizeInPoints}");
Console.WriteLine($"\tSize in pixels:\t{pageInfo.GetSizeInPixels(1.0f, 96)} at {scale * 100}% scale, {dpi} dpi");
// Skriv ut information om källfacket.
Console.WriteLine($"\tTray:\t{pageInfo.PaperTray}");
PaperSource source = pageInfo.GetSpecifiedPrinterPaperSource(paperSources, paperSources[0]);
Console.WriteLine($"\tSuitable print source:\t{source.SourceName}, kind: {source.Kind}");
}
Se även
- class PageInfo
- namnutrymme Aspose.Words.Rendering
- hopsättning Aspose.Words