Description
Custom set of coordinate values.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Values() As System.Array
|
[C#] |
---|
public System.Array Values {get; set;}
|
[Managed C++] |
---|
public: __property System::Array get_Values(); public: __property void set_Values(
System::Array
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Values(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_Values(
SAFEARRAY * Values
);
|
[Java] |
---|
public AgSafeArray getValues();
public void setValues(
AgSafeArray
);
|
[Python - STK API] |
---|
@property
def Values(self) -> list:
@Values.setter
def Values(self, Values:list) -> None:
|
See Also