You need to configure the print options that a user can change.
Which lines of code should you use at line PG34? (Each correct answer presents part of the solution.
Choose all that apply.)
A.
printTask.Options.Di3piayedOptions.Add(StandardPrintTaskOptions.MediaSize) ;
B.
printTask.Options.Di3piayedOptions.Add(StandardPrintTaskOptions.HolePunch);
C.
printTask.Options.DisplayedOptions.Add(StandardOptions.MediaSize);
D.
printTask.Options.DisplayedOptions.Add(StandardOptions.Orientation);
E.
printTask.Options.DisplayedOptions.Add(StandardPrintTasJcOptions.Orientation);
F.
printTask.Options.DisplayedOptions.Add(StandardOptions.HolePunch);
Explanation:
The StandardPrintTaskOptions object provides the canonical names for the common print task
options used in the PrintTaskOptions object. These names may be used to add or remove items from
thePrintTaskOptions.DisplayedOptions list to indicate the options that appear in the print window.
A B E
There is no requirement for HolePunch. The answer is A E.
thats true.
Requirements:
The default printing options are portrait orientation and grayscale color mode.
The app must enable the user to select the media size and printing orientation.