34 lines
536 B
Markdown
34 lines
536 B
Markdown
# Downtrend (Get Method)
|
||
|
||
Gets the value of "Downtrend" property.
|
||
|
||
```
|
||
bool Downtrend() const
|
||
|
||
```
|
||
|
||
Return Value
|
||
|
||
Value of "Downtrend" property of the object assigned to the class instance. If there is no object assigned, it returns false.
|
||
|
||
# Downtrend (Set Method)
|
||
|
||
Sets new value of "Downtrend" property.
|
||
|
||
```
|
||
bool Downtrend(
|
||
bool downtrend // flag value
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
downtrend
|
||
|
||
[in] New value for "Downtrend" property.
|
||
|
||
Return Value
|
||
|
||
true - successful, false - cannot change the property.
|