点击或拖拽改变大小

DbScopeInfo 字段

X#

DbScopeInfo 类型公开以下成员。

字段
  名称说明
公共字段ForBlock
A code block representing the conditional for clause. A for condition is, essentially, a filter that hides rows for which the condition evaluates to FALSE. The string value is provided for storage, while the code block is provided as a parameter for the EvalBlock() method.
公共字段ForExpression
A string representing the conditional for clause. A for condition is, essentially, a filter that hides rows for which the condition evaluates to FALSE. The string value is provided for storage, while the code block is provided as a parameter for the EvalBlock() method.
公共字段IgnoreDuplicates
A flag that is TRUE if a process should ignore duplicate key values.
公共字段IgnoreFilter
A flag that is TRUE if a process should ignore any filter condition imposed on the current work area.
公共字段IncludeDeleted
A flag that is TRUE if a process should include deleted rows.
公共字段Last
A flag that is TRUE if the last row of the current scope is required.
公共字段NextCount
Permits continuation of a process for the next lNext rows, while obeying for and while clauses.
公共字段RecId
Permits continuation of a process for a single row number, while obeying for and while clauses.
公共字段Rest
A flag that is TRUE if a process should continue stepping through data from the current work area cursor position until logical end-of-file.
公共字段WhileBlock
A code block representing the conditional while clause. A while condition permits continuation of a process that steps through rows until the condition evaluates to FALSE. The string value is provided for storage, while the code block is provided as a parameter for the EvalBlock() method.
公共字段WhileExpression
A string representing the conditional while clause. A while condition permits continuation of a process that steps through rows until the condition evaluates to FALSE. The string value is provided for storage, while the code block is provided as a parameter for the EvalBlock() method.
Top
参见