Version

TaskFromRowNumber Method

Returns the Task at the row position in the list which represents all tasks that belong to this Project, or null if no such task exists.
Syntax
'Declaration
 
Public Function TaskFromRowNumber( _
   ByVal rowNumber As Integer _
) As Task
public Task TaskFromRowNumber( 
   int rowNumber
)

Parameters

rowNumber
The value of the task's RowNumber property.

Return Value

A Task object or null if the specified rowNumber was not valid.
Remarks

The rowNumber is a one-based value which refers to a task by the value of its RowNumber property. This number unambiguously identifies a task by a numerical index.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also