- PatientID
- A System.String representing the Patient ID.
| Visual Basic (Declaration) | |
|---|---|
<DebuggerNonUserCodeAttribute()> Public Function FindByPatientID( _ ByVal PatientID As String _ ) As CompositeInstanceDataSet.PatientRow | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As CompositeInstanceDataSet.PatientDataTable Dim PatientID As String Dim value As CompositeInstanceDataSet.PatientRow value = instance.FindByPatientID(PatientID) | |
| C# | |
|---|---|
[DebuggerNonUserCodeAttribute()] public CompositeInstanceDataSet.PatientRow FindByPatientID( string PatientID ) | |
| C++/CLI | |
|---|---|
[DebuggerNonUserCodeAttribute()] public: CompositeInstanceDataSet.PatientRow^ FindByPatientID( String^ PatientID ) | |
Parameters
- PatientID
- A System.String representing the Patient ID.
Return Value
The CompositeInstanceDataSet.PatientRow that matches the given PatientID. It is null if no results are found.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