Sets the first class to be used in the FROM clause for the statement.

Namespace:  FileNet.Api.Query
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Sub SetFromClauseInitialValue ( _
	symbolicClassName As String, _
	aliasName As String, _
	includeSubclasses As Boolean _
)
C#
public virtual void SetFromClauseInitialValue(
	string symbolicClassName,
	string aliasName,
	bool includeSubclasses
)
Visual C++
public:
virtual void SetFromClauseInitialValue(
	String^ symbolicClassName, 
	String^ aliasName, 
	bool includeSubclasses
)
JavaScript
function setFromClauseInitialValue(symbolicClassName, aliasName, includeSubclasses);

Parameters

symbolicClassName
Type: System..::.String
A String containing the symbolic name of the class.
aliasName
Type: System..::.String
A String containing the alias name of the class. This can be Null.
Note Note: Alias names cannot be used when EngineObject objects are to be returned by the query operation.
includeSubclasses
Type: System..::.Boolean
A Boolean value of True if the FROM clause should include any subclasses of the class specified in symbolicClassName; False otherwise.

ToggleExceptions

ExceptionCondition
FileNet.Api.Exception..::.EngineRuntimeException Thrown when the parameter is Null or invalid.

ToggleSee Also