DataViewGetScopeFilter method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Based on the user's scope, returns a string that can be used as a filter against an object that has ScopeType and ScopeName properties like DataView Layouts.
Syntax
object.DataViewGetScopeFilter
| Part | Description | 
|---|---|
| object | Required. A reference to a valid DataView component object. | 
Example
Sub Main()
   Dim sFilter as String    
   sFilter = ThisForm.Components("DrilldownGrid").DataViewGetScopeFilter()
End Sub