| Visual Basic (Declaration) | |
|---|---|
Public Property Name As PersonName | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Patient Dim value As PersonName instance.Name = value value = instance.Name | |
| C# | |
|---|---|
public PersonName Name {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property PersonName* get_Name(); public: __property void set_Name( PersonName* value ); | |
| C++/CLI | |
|---|---|
public: property PersonName^ Name { PersonName^ get(); void set ( PersonName^ value); } | |
Property Value
Patient's full legal name.For an example refer to QueryRetrieveScu.Find
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