HidDevice.CreateOutputReport Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateOutputReport() |
Creates the only, or default, output report that the host will send to the device. |
CreateOutputReport(UInt16) |
Creates an output report, identified by the reportId parameter, that the host will send to the device. |
CreateOutputReport()
Creates the only, or default, output report that the host will send to the device.
public:
virtual HidOutputReport ^ CreateOutputReport() = CreateOutputReport;
/// [Windows.Foundation.Metadata.Overload("CreateOutputReport")]
HidOutputReport CreateOutputReport();
[Windows.Foundation.Metadata.Overload("CreateOutputReport")]
public HidOutputReport CreateOutputReport();
function createOutputReport()
Public Function CreateOutputReport () As HidOutputReport
Returns
A HidOutputReport object.
- Attributes
See also
Applies to
CreateOutputReport(UInt16)
Creates an output report, identified by the reportId parameter, that the host will send to the device.
public:
virtual HidOutputReport ^ CreateOutputReport(unsigned short reportId) = CreateOutputReport;
/// [Windows.Foundation.Metadata.Overload("CreateOutputReportById")]
HidOutputReport CreateOutputReport(uint16_t const& reportId);
[Windows.Foundation.Metadata.Overload("CreateOutputReportById")]
public HidOutputReport CreateOutputReport(ushort reportId);
function createOutputReport(reportId)
Public Function CreateOutputReport (reportId As UShort) As HidOutputReport
Parameters
- reportId
-
UInt16
unsigned short
uint16_t
Identifies the report being created.
Returns
A HidOutputReport object.
- Attributes