SPFieldNumber.GetFieldValueAsHtml method (Double, CultureInfo, Boolean, SPNumberFormatTypes)

Returns the field value in HTML format based on the specified data, culture information, Boolean value, and number format in order to render the field value directly on the page.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Shared Function GetFieldValueAsHtml ( _
    data As Double, _
    culture As CultureInfo, _
    showAsPercentage As Boolean, _
    displayFormat As SPNumberFormatTypes _
) As String
'Usage
Dim data As Double
Dim culture As CultureInfo
Dim showAsPercentage As Boolean
Dim displayFormat As SPNumberFormatTypes
Dim returnValue As String

returnValue = SPFieldNumber.GetFieldValueAsHtml(data, _
    culture, showAsPercentage, displayFormat)
public static string GetFieldValueAsHtml(
    double data,
    CultureInfo culture,
    bool showAsPercentage,
    SPNumberFormatTypes displayFormat
)

Parameters

  • data
    Type: System.Double

    A System.Double object that represents the value to convert to HTML format.

  • culture
    Type: System.Globalization.CultureInfo

    A System.Globalization.CultureInfo object that contains information about the specific culture represented through the field.

  • showAsPercentage
    Type: System.Boolean

    true to display field values as a percentage; otherwise, false.

Return value

Type: System.String
A string that contains the value in HTML format.

See also

Reference

SPFieldNumber class

SPFieldNumber members

GetFieldValueAsHtml overload

Microsoft.SharePoint namespace