Get an Option value for e05uc

Syntax

C#
public void Get(
	string optstr,
	out int ivalue
)
Visual Basic
Public Sub Get ( _
	optstr As String, _
	<OutAttribute> ByRef ivalue As Integer _
)
Visual C++
public:
void Get(
	String^ optstr, 
	[OutAttribute] int% ivalue
)
F#
member Get : 
        optstr : string * 
        ivalue : int byref -> unit 

Parameters

optstr
Type: System..::..String
The name of an option.
ivalue
Type: System..::..Int32%
The option value.

See Also