8.1.2.13 Column::GetParameter

It is recommended that you switch to the originpro package. PyOrigin is primarily for users who need to work with Origin version prior to 2021.


Description

Get one parameter value from column label.

Syntax

GetParameter(Index)

Parameters

Index
The parameter index

Return

The string variable which will receive the value.

Examples

import PyOrigin
PyOrigin.FindWorksheet('[Book1]Sheet1').Columns(0).SetParameter(0, 'w')
print('The first parameter is %s' % PyOrigin.FindWorksheet('[Book1]Sheet1').Columns(0).GetParameter(0))

See Also

Column::SetParameter