C#
VB
C++
Java
public DicomModule FindModule(
DicomModuleType module
)
Public Function FindModule( _
ByVal module As DicomModuleType _
) As DicomModule
public DicomModule findModule(DicomModuleType module)
public:
DicomModule^ FindModule(
DicomModuleType module
)
module
The module to find.
A DicomModule object that contains information about the specified module, or a null reference (Nothing in VB) if the specified module was not found. The DicomModule object returned by this method is not unique. It will be overwritten by subsequent calls to FindModule.
The DicomModule object returned by this method is not unique. It will be overwritten by subsequent calls to FindModule.
To find the module at a specific index use FindModuleByIndex.
For an example, refer to DeleteModule.