LinkFieldValue.ToString método
Retorna uma cadeia de caracteres HTML com uma marca < A > e propriedades com valores definidos como no momento para este objeto LinkFieldValue .
Namespace: Microsoft.SharePoint.Publishing.Fields
Assembly: Microsoft.SharePoint.Publishing (em Microsoft.SharePoint.Publishing.dll)
Sintaxe
'Declaração
<SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel := True)> _
Public Overrides Function ToString As String
'Uso
Dim instance As LinkFieldValue
Dim returnValue As String
returnValue = instance.ToString()
[SharePointPermissionAttribute(SecurityAction.Demand, ObjectModel = true)]
public override string ToString()
Valor retornado
Tipo: System.String
Uma cadeia de caracteres HTML com uma marca < A > e propriedades com valores definidos como no momento para este LinkFieldValue, ou uma seqüência vazia.
Comentários
Se a propriedade NavigateUrl não tem um valor, esse método retorna uma seqüência vazia. Caso contrário, esse método retorna uma seqüência de caracteres HTML que contém uma marca < A >. Somente determinadas propriedades são reconhecidas no < A > e < IMG > marcas e são usados para gerar a seqüência de caracteres HTML.
Exemplos
// Retrieve the current value from an SPListItem object
// with a column of the LinkField type with the
// name linkFieldName.
LinkFieldValue currentFieldValue =
listItemWithLinkField[linkFieldName] as LinkFieldValue;
// If there is no current value, construct a new empty value.
if (null == currentFieldValue)
{
currentFieldValue = new LinkFieldValue();
}
// If this property is not set to a value, the ToString() for the
// LinkFieldValue returns String.Empty and nothing is stored in
// the field value when it is set back into the SPListItem.
currentFieldValue.NavigateUrl = NewNavigateUrl;
Dica
Este exemplo é parte do maior LinkFieldValue de exemplo no tópico LinkFieldValue .