XDocuments2.New 方法
根據指定的表單建立新的 Microsoft Office InfoPath 表單。
**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)
語法
'宣告
<DispIdAttribute(2)> _
Function New ( _
<InAttribute> varURI As Object, _
<InAttribute> <OptionalAttribute> Optional dwBehavior As Integer = 1 _
) As XDocument
'用途
Dim instance As XDocuments2
Dim varURI As Object
Dim dwBehavior As Integer
Dim returnValue As XDocument
returnValue = instance.New(varURI, dwBehavior)
[DispIdAttribute(2)]
XDocument New (
[InAttribute] Object varURI,
[OptionalAttribute] [InAttribute] int dwBehavior
)
參數
- varURI
指定表單的統一資源識別元 (URI)。
- dwBehavior
預設值為 1。指定應該如何開啟表單的值。這些值根據 XdDocumentVersionMode 列舉為基礎。
傳回值
_XDocument 物件。
備註
New 方法僅可用於根據現有的表單建立新表單;而無法用於根據表單範本建立新表單。若要從表單範本建立表單,請使用 NewFromSolution 方法。
使用 New 方法時,會在 InfoPath 中開啟新表單,而且新表單已準備好讓您填寫。
範例
在下列範例中,XDocumentsCollection 集合的 New 方法會傳遞現有表單的 URI,並建立新表單及傳回關聯的 _XDocument 物件:
XDocument newDocument;
newDocument = thisApplication.XDocuments.New(@"C:\MyForm.xml", 1);
請參閱
參考
XDocuments2 介面
XDocuments2 成員
Microsoft.Office.Interop.InfoPath 命名空間