- dicomFile
 - The physical path of the DICOM file.
 
- extraData
 - User custom data.
 
| Visual Basic (Declaration) | |
|---|---|
Overrides Protected Function DoGetObjectType( _ ByVal dicomFile As String, _ ByVal extraData As String _ ) As ObjectType  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
 | |
| C# | |
|---|---|
protected override ObjectType DoGetObjectType( string dicomFile, string extraData )  | |
| C++/CLI | |
|---|---|
protected: ObjectType DoGetObjectType( String^ dicomFile, String^ extraData ) override  | |
Parameters
- dicomFile
 - The physical path of the DICOM file.
 - extraData
 - User custom data.
 
Return Value
Returns one of the values from the ObjectType enumeration.Currently this method will return only .SingleFrameImage for single frame images, .MultiFrameImage for multi-page images or .None for images with no frames.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
  
   
                           
Copy Code