GridCell.PutValue

PutValue(DateTime)

Puts a DateTime value into the cell.

public void PutValue(DateTime param_date)
ParameterTypeDescription
param_dateDateTimeInput value

See Also


PutValue(string)

Puts a String value into the cell.

public void PutValue(string param_string)
ParameterTypeDescription
param_stringStringInput value

See Also


PutValue(object)

Puts an object value into the cell.same as setValue(Object param_object)

public void PutValue(object param_object)
ParameterTypeDescription
objectValueObjectinput value

See Also


PutValue(int)

Puts a int value into the cell.

public void PutValue(int param_int)
ParameterTypeDescription
param_intInt32Input value

See Also


PutValue(string, bool, bool)

Puts a value into the cell, if appropriate the value will be converted to other data type and cell’s number format will be reset.

public void PutValue(string stringValue, bool isConverted, bool setStyle)
ParameterTypeDescription
stringValueStringInput value
isConvertedBooleanTrue: converted to other data type if appropriate.
setStyleBooleanTrue: set the number format to cell’s style when converting to other data type

See Also


PutValue(string, bool)

Puts a string value into the cell and converts the value to other data type if appropriate.

public void PutValue(string stringValue, bool isConverted)
ParameterTypeDescription
stringValueStringInput value
isConvertedBooleanTrue: converted to other data type if appropriate.

See Also


PutValue(bool)

Puts a boolean value into the cell.

public void PutValue(bool param_boolean)
ParameterTypeDescription
param_booleanBooleanInput value

See Also


PutValue(double)

Puts a double value into the cell.

public void PutValue(double param_double)
ParameterTypeDescription
param_doubleDoubleInput value

See Also