IFieldEditor.DisplayAsNewSection Property (Microsoft.SharePoint.WebControls)
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)
Syntax

Visual Basic (Declaration)
ReadOnly Property DisplayAsNewSection As Boolean
Visual Basic (Usage)
Dim instance As IFieldEditor
Dim value As Boolean

value = instance.DisplayAsNewSection
C#
bool DisplayAsNewSection { get; }

Property Value

true if the editor should be in its own section; otherwise, false.
Remarks

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.

Example

The following code is an example of an implementation of this property.

C#
public bool DisplayAsNewSection
{
    get { return false; }
}
See Also

Tags :


Page view tracker