Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace IndianHealthService.BMXNet.EHR
|
---|
6 | {
|
---|
7 | /// <summary>
|
---|
8 | /// To support the HelpFile framework in the EHR menu, your component must
|
---|
9 | /// implement this interface.
|
---|
10 | /// </summary>
|
---|
11 | public interface IEhrComponent:IDisposable {
|
---|
12 |
|
---|
13 | /// <summary>
|
---|
14 | /// The name of the compiled Windows help file (.chm).
|
---|
15 | /// </summary>
|
---|
16 | /// <remarks>
|
---|
17 | /// See the EHR/VueCentric integration partial class for details on specifying a HelpFile
|
---|
18 | /// </remarks>
|
---|
19 | String HelpFile { get; }
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Not currently used
|
---|
23 | /// </summary>
|
---|
24 | String HelpContext { get; }
|
---|
25 |
|
---|
26 |
|
---|
27 | /// <summary>
|
---|
28 | /// Not currently used
|
---|
29 | /// </summary>
|
---|
30 | String HelpString { get; }
|
---|
31 | }
|
---|
32 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.