편집

다음을 통해 공유


_XDocument3.CloseDocument Method

Definition

Closes the form.

public:
 void CloseDocument();
public void CloseDocument ();
abstract member CloseDocument : unit -> unit
Public Sub CloseDocument ()

Examples

In the following example, the CloseDocument method of the XDocument object is used to close the current form.

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
thisDoc.CloseDocument();
Dim thisDoc As _XDocument3 = DirectCast(_
   thisXDocument, _XDocument3)
thisDoc.CloseDocument()

In the following example, the CloseDocument method of the XDocument object is used to close the current form.

_XDocument3 thisDoc = (_XDocument3)thisXDocument;
thisDoc.CloseDocument();
Dim thisDoc As _XDocument3 = DirectCast(_
   thisXDocument, _XDocument3)
thisDoc.CloseDocument()

Remarks

Calling the CloseDocument method is equivalent to calling the Close(Object) method of the XDocumentsCollection collection.

Applies to