This method will return the list of associated experiments for a specified model
Syntax
| Visual Basic (Declaration) | |
|---|
<WebMethodAttribute("This method will return the list of associated experiments for a specified model")>
Public Function GetModelExperiments( _
ByVal ModelID As Integer _
) As InvestigatorList |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ModelWebService
Dim ModelID As Integer
Dim value As InvestigatorList
value = instance.GetModelExperiments(ModelID)
|
| C# | |
|---|
[WebMethodAttribute("This method will return the list of associated experiments for a specified model")]
public InvestigatorList GetModelExperiments(
int ModelID
) |
| Managed Extensions for C++ | |
|---|
[WebMethodAttribute("This method will return the list of associated experiments for a specified model")]
public: InvestigatorList GetModelExperiments(
int ModelID
) |
| C++/CLI | |
|---|
[WebMethodAttribute("This method will return the list of associated experiments for a specified model")]
public:
InvestigatorList GetModelExperiments(
int ModelID
) |
Parameters
- ModelID
Return Value
InvestigatorList
Example
InvestigatorList investigatorList = ModelMgr.GetModelExperiments(ModelID);
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also