- volumeFile
- Type: System.String The path for the 3D volume file.
| 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.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code