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




command
Type: System.Data.Common.DbCommand The database command that will be initialized to store the 3D volume.
volumeNumber
Type: System.Int32 The volume number in a series.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.
volumeFileName
Type: System.String The path of the file which contains the 3D volume data.
stateFileName
Type: System.String The path of the file which contains the 3D volume state information.
userIdentifier
Type: System.String A user identifier for the 3D volume.
command
Type: System.Data.Common.DbCommand The database command that will be initialized to store the 3D volume.
volumeNumber
Type: System.Int32 The volume number in a series.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.
volumeFileName
Type: System.String The path of the file which contains the 3D volume data.
stateFileName
Type: System.String The path of the file which contains the 3D volume state information.
userIdentifier
Type: System.String A user identifier for the 3D volume.
Initializes a System.Data.Common.DbCommand object to store a 3D volume information.

Syntax

Visual Basic (Declaration) 
Overrides Protected Sub PrepareStoreVolumeCommnad( _
   ByVal command As DbCommand, _
   ByVal volumeNumber As Integer, _
   ByVal seriesInstanceUID As String, _
   ByVal volumeFileName As String, _
   ByVal stateFileName As String, _
   ByVal userIdentifier As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As WorkstationSqlDataAccessAgent
Dim command As DbCommand
Dim volumeNumber As Integer
Dim seriesInstanceUID As String
Dim volumeFileName As String
Dim stateFileName As String
Dim userIdentifier As String
 
instance.PrepareStoreVolumeCommnad(command, volumeNumber, seriesInstanceUID, volumeFileName, stateFileName, userIdentifier)
C# 
protected override void PrepareStoreVolumeCommnad( 
   DbCommand command,
   int volumeNumber,
   string seriesInstanceUID,
   string volumeFileName,
   string stateFileName,
   string userIdentifier
)
Managed Extensions for C++ 
protected: void PrepareStoreVolumeCommnad( 
   DbCommand* command,
   int volumeNumber,
   string* seriesInstanceUID,
   string* volumeFileName,
   string* stateFileName,
   string* userIdentifier
) override 
C++/CLI 
protected:
void PrepareStoreVolumeCommnad( 
   DbCommand^ command,
   int volumeNumber,
   String^ seriesInstanceUID,
   String^ volumeFileName,
   String^ stateFileName,
   String^ userIdentifier
) override 

Parameters

command
Type: System.Data.Common.DbCommand The database command that will be initialized to store the 3D volume.
volumeNumber
Type: System.Int32 The volume number in a series.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.
volumeFileName
Type: System.String The path of the file which contains the 3D volume data.
stateFileName
Type: System.String The path of the file which contains the 3D volume state information.
userIdentifier
Type: System.String A user identifier for the 3D volume.

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