Class Marker : getMatchingProgrammeArray Method


Array getMatchingProgrammeArray( Date dtFrom, Date dtTo )

Summary

Get a list of programmes matching the Marker and a date range


Parameters

ParameterDescription
Date dtFrom
Date dtTo


Returns

Returns an array of programmes


Examples

var dtFrom = new Date();
var dtTo = new Date();
dtTo.setFullYear( dtTo.getFullYear() + 1 );

var arrProg = marker.getMatchingProgrammeArray( dtFrom, dtTo );
showProgrammeList( "programmes matching the marker", "", "OK", "", arrProg, true, "" );

See also the example script example-show-get-matching.dgscript


Requirements

build 1105