Gets and sets whether the Statement is a Return or DefineStatement.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public virtual bool Shown { get; set; }
Visual Basic
Public Overridable Property Shown As Boolean
	Get
	Set
Visual C++
public:
virtual property bool Shown {
	bool get ();
	void set (bool value);
}

Field Value

true if the current Statement is a Return statement (indicates that the application wants to see its result records), or false if it is a Define statement (indicates that it is only used as an intermediate calculation).

Remarks

Return means that the results should be returned to the client, while Define means that it will only be used to compute other results.

See Also