Interface IST_ResourceSearchPathItem
  Resource search path manager
Maintains search paths for locating resources of specific types
Assembly: STResourceManager.dll
  Syntax
  
    [Guid("C50036BB-F5FA-41C8-8527-861CEC66001B")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IST_ResourceSearchPathItem
   
  Properties
  
  Count
  Number of search paths in list
Declaration
  
  Property Value
  
  
  this[int]
  
  
  Declaration
  
    string this[int Index] { get; set; }
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | int | Index |  | 
    
  
  Property Value
  
  
  ResourceType
  Type of resources to locate
Defines which resource type this path list applies to
Declaration
  
    TST_ResourceType ResourceType { get; set; }
   
  Property Value
  
  Methods
  
  AddPath(string)
  
  
  Declaration
  
    int AddPath(string APath)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | string | APath |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | int | Index of added path | 
    
  
  
  Clear()
  
  
  Declaration
  
  
  DeletePath(int)
  
  
  Declaration
  
    void DeletePath(int Index)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | int | Index |  | 
    
  
  
  IndexOfPath(string)
  
  
  Declaration
  
    int IndexOfPath(string APath)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | string | APath |  | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | int | Index if found, -1 otherwise |