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)

Syntax

Visual Basic (Declaration)
Public Overridable Sub SetFromClauseInitialValue( _ 
   ByVal symbolicClassName As String,  _ 
   ByVal aliasName As String,  _ 
   ByVal includeSubclasses As Boolean _ 
)
C#
public virtual void SetFromClauseInitialValue(
   string symbolicClassName,
   string aliasName,
   bool includeSubclasses
)
C++
public:
 virtual void SetFromClauseInitialValue(
   String symbolicClassName,
   String aliasName,
   bool includeSubclasses
)
J#
public virtual void SetFromClauseInitialValue(
   string symbolicClassName,
   string aliasName,
   bool includeSubclasses
)
JScript
public virtual  function SetFromClauseInitialValue(
   symbolicClassName : String,
   aliasName : String,
   includeSubclasses : bool
)

Parameters

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

Exceptions

Exception TypeCondition
EngineRuntimeException Thrown when the parameter is Null or invalid.

See Also