Description
The identifier of the vendor.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property VendorID() As String
|
[C#] |
---|
public string VendorID {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_VendorID(); public: __property void set_VendorID(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_VendorID(
BSTR * pbstrVal
);
public: HRESULT put_VendorID(
BSTR VendorID
);
|
[Java] |
---|
public String getVendorID();
public void setVendorID(
String
);
|
[Python - STK API] |
---|
@property
def VendorID(self) -> str:
@VendorID.setter
def VendorID(self, VendorID:str) -> None:
|
See Also