BoundField.FormatDataValue(Object, Boolean) Method

Definition

Formats the specified field value for a cell in the BoundField object.

protected:
 virtual System::String ^ FormatDataValue(System::Object ^ dataValue, bool encode);
protected virtual string FormatDataValue (object dataValue, bool encode);
abstract member FormatDataValue : obj * bool -> string
override this.FormatDataValue : obj * bool -> string
Protected Overridable Function FormatDataValue (dataValue As Object, encode As Boolean) As String

Parameters

dataValue
Object

The field value to format.

encode
Boolean

true to encode the value; otherwise, false.

Returns

The field value converted to the format specified by DataFormatString.

Remarks

The FormatDataValue method is a helper method used to transform a field value to the format specified by the DataFormatString property. If a field value is null, the value of the NullDisplayText property is returned.

Note

This method is used primarily by control developers.

Notes to Inheritors

When extending the BoundField class, you can override this method to perform a custom formatting routine.

Applies to