XpsDocument.Close 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XPS 문서 Package를 닫습니다.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()
예제
다음 예제에서는 열기, 콘텐츠를 삽입 및 닫기 방법은 XpsDocument합니다.
// Create an XpsDocument package (without PrintTicket).
{
Package^ package = Package::Open(packageName);
try
{
XpsDocument^ xpsDocument = gcnew XpsDocument(package);
// Add the package content (false=without PrintTicket).
AddPackageContent(xpsDocument, false);
// Close the package.
xpsDocument->Close();
} finally
{
delete package;
}
// Create an XpsDocument package (without PrintTicket).
using (Package package = Package.Open(packageName))
{
XpsDocument xpsDocument = new XpsDocument(package);
// Add the package content (false=without PrintTicket).
AddPackageContent(xpsDocument, false);
// Close the package.
xpsDocument.Close();
}
' Create an XpsDocument package (without PrintTicket).
Using package1 As Package = Package.Open(packageName)
Dim xpsDocument As New XpsDocument(package1)
' Add the package content (false=without PrintTicket).
AddPackageContent(xpsDocument, False)
' Close the package.
xpsDocument.Close()
End Using
다음 예제에서는 방법도 엽니다, 쓰기, 및 닫기는 XpsDocument합니다.
// Save as a WordXML document.
WordXmlSerializer.SaveToFile(fileName, flowDocument.ContentStart, flowDocument.ContentEnd);
return true;
설명
경우는 XpsDocument 버퍼가 저장소 및 실제 문서에 기록 되는 데이터 쓰기 권한으로 열렸으면 Package 닫혀 있습니다.
이후에 Close 되었으면 호출 없는 문서 부분을 통해 액세스할 수 있습니다이 XpsDocument 인스턴스.