SPContentType.NewDocumentControl 属性

获取或设置一个字符串,标识用于创建新文档的应用程序。

命名空间:  Microsoft.SharePoint
程序集:  Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)

语法

声明
Public Property NewDocumentControl As String
    Get
    Set
用法
Dim instance As SPContentType
Dim value As String

value = instance.NewDocumentControl

instance.NewDocumentControl = value
public string NewDocumentControl { get; set; }

属性值

类型:System.String
应用程序的编程标识符。默认值是String.Empty。

备注

此属性可以用于标识用于创建基于表单模板的文档的 ActiveX 控件。例如,下面的代码标识的模板和应用程序的特定内容类型,由本地变量contentType表示在代码中使用。

contentType.DocumentTemplate = "ContentType/Forms/template.xsn";
contentType.NewDocumentControl = "Sharepoint.OpenXMLDocuments";
contentType.RequireClientRenderingOnNew = false;
contentType.DocumentTemplate = "ContentType/Forms/template.xsn"
contentType.NewDocumentControl = "Sharepoint.OpenXMLDocuments"
contentType.RequireClientRenderingOnNew = False

另请参阅

引用

SPContentType 类

SPContentType 成员

Microsoft.SharePoint 命名空间

其他资源

Introduction to Content Types

Site and List Content Types

Base Content Type Hierarchy