LEADTOOLS Medical (Leadtools.Medical.Workstation.DataAccessLayer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
GetBytesChuncks Method
See Also 
Leadtools.Medical.Workstation.DataAccessLayer Namespace > WorkstationDataAccessAgent Class : GetBytesChuncks Method




volumeFile
Type: System.String The path for the 3D volume file.
volumeFile
Type: System.String The path for the 3D volume file.
Returns a chunk of bytes from a 3D volume file.

Syntax

Visual Basic (Declaration) 
Public Shared Function GetBytesChuncks( _
   ByVal volumeFile As String _
) As List(Of Byte())
Visual Basic (Usage)Copy Code
Dim volumeFile As String
Dim value As List(Of Byte())
 
value = WorkstationDataAccessAgent.GetBytesChuncks(volumeFile)
C# 
public static List<byte[]> GetBytesChuncks( 
   string volumeFile
)
Managed Extensions for C++ 
public: static List<byte[]>* GetBytesChuncks( 
   string* volumeFile
) 
C++/CLI 
public:
static List<array<byte>>^ GetBytesChuncks( 
   String^ volumeFile
) 

Parameters

volumeFile
Type: System.String The path for the 3D volume file.

Return Value

Type: List of System.Byte Array A list which contains the chunks of bytes from the provided 3D volume file.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also