Gets a value that indicates whether the field property editor should be in a special section on the page.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in microsoft.sharepoint.dll)
Visual Basic (Declaration)
ReadOnly Property DisplayAsNewSection As Boolean
Dim instance As IFieldEditor
Dim value As Boolean
value = instance.DisplayAsNewSection
bool DisplayAsNewSection { get; }
Property Value
true if the editor should be in its own section; otherwise, false.
In Windows SharePoint Services 3.0, when this property is false, the editor appears in the Additional Column Settings section of the New Site Column, Change Site Column, Create Column, and Change Column pages. If the property value is true, the editor appears in its own section on the page.
The following code is an example of an implementation of this property.
public bool DisplayAsNewSection
{
get { return false; }
}