GetValue(T) Method (Int32, Int32)

Office Open XML

Get a strongly typed cell value from the worksheet

Namespace:  OfficeOpenXml
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public T GetValue<T>(
	int Row,
	int Column
)
Visual Basic (Declaration)
Public Function GetValue(Of T) ( _
	Row As Integer, _
	Column As Integer _
) As T
Visual C++
public:
generic<typename T>
T GetValue(
	int Row, 
	int Column
)

Parameters

Row
Type: System..::.Int32
The row number
Column
Type: System..::.Int32
The row number

Type Parameters

T
The type

Return Value

The value. If the value can't be converted to the specified type, the default value will be returned

See Also