我正在尝试创建一个从联系人内容类型(SharePoint 附带)继承的内容类型。我需要其中的大部分字段,但希望能够删除其中的一些。
有没有办法通过内容类型的 XML 定义删除我不想要的字段?
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<ContentType ID="0x01004B56BB872BFE984D9611B5D8CF52CB60" Name="Child Contact" Description="Inherits from Contact" Group="...">
<FieldRefs>
??? What would I put there to remove fields that exist in the parent?
</FieldRefs>
</ContentType>
</Elements>