[This is preliminary documentation and is subject to change.]

Populates the month drop down list by providing the first row. The first row is usually used to provide instructions (i.e. to select other rows etc.). This method populates the short form of the month in rest of the rows. The value of the first row is always -1 in the drop down list.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public void PopulateMonth(
	DropDownList dr,
	string firstRow
)
Visual Basic (Declaration)
Public Sub PopulateMonth ( _
	dr As DropDownList, _
	firstRow As String _
)
Visual C++
public:
void PopulateMonth(
	DropDownList^ dr, 
	String^ firstRow
)

Parameters

dr
Type: System.Web.UI.WebControls..::.DropDownList
The drop down list to be populated.
firstRow
Type: System..::.String
The text of the first row.

See Also