Description
Select the graph's X axis.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property IndependentVariable() As String
|
[C#] |
---|
public string IndependentVariable {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_IndependentVariable(); public: __property void set_IndependentVariable(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_IndependentVariable(
BSTR * pRetVal
);
public: HRESULT put_IndependentVariable(
BSTR InVal
);
|
[Java] |
---|
public String getIndependentVariable();
public void setIndependentVariable(
String
);
|
[Python - STK API] |
---|
@property
def IndependentVariable(self) -> str:
@IndependentVariable.setter
def IndependentVariable(self, InVal:str) -> None:
|
See Also