SPList.DefaultDisplayFormUrl property
Gets or sets the URL to the default form for displaying list items.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Property DefaultDisplayFormUrl As String
Get
Set
'Usage
Dim instance As SPList
Dim value As String
value = instance.DefaultDisplayFormUrl
instance.DefaultDisplayFormUrl = value
public string DefaultDisplayFormUrl { get; set; }
Property value
Type: System.String
When you set the property, use the value of the ServerRelativeUrl property of an SPForm object that is in the collection returned by the Forms property of the list. When you get the property, the string that is returned is the value of the Url property of the SPForm object, which is a server-relative URL.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | The value set in the property is a null reference (Nothing in Visual Basic). |
SPException | The form cannot be set. Either the new form does not exist or the list does not support the form. |