amdcc.org Send comments on this topic.
GetModel Method
See Also 
amdcc.org.webservices Namespace > ModelWebService Class : GetModel Method




ModelID
This method will return an Model for the specified matching ModelID

Syntax

Visual Basic (Declaration) 
<WebMethodAttribute("This method will return an Model for the specified matching ModelID ")>
Public Function GetModel( _
   ByVal ModelID As Integer _
) As Model
Visual Basic (Usage)Copy Code
Dim instance As ModelWebService
Dim ModelID As Integer
Dim value As Model
 
value = instance.GetModel(ModelID)
C# 
[WebMethodAttribute("This method will return an Model for the specified matching ModelID ")]
public Model GetModel( 
   int ModelID
)
Managed Extensions for C++ 
[WebMethodAttribute("This method will return an Model for the specified matching ModelID ")]
public: Model GetModel( 
   int ModelID
) 
C++/CLI 
[WebMethodAttribute("This method will return an Model for the specified matching ModelID ")]
public:
Model GetModel( 
   int ModelID
) 

Parameters

ModelID

Return Value

Model

Example

Model model = ModelMgr.GetModel(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