Usage
Signature:
interface HighlightTextElement
- Typescript Import Format
- //To typecheck the element APIs, import as below.
 import { HighlightTextElement } from "ojs/ojhighlighttext";
 //For the transpiled javascript to load the element's module, import as below
 import "ojs/ojhighlighttext";
For additional information visit:
Note: Application logic should not interact with the component's properties or invoke its methods until the BusyContext indicates that the component is ready for interaction.
Attributes
- 
    
    match-text :string
- 
    
      The text string to match.- Default Value:
- ''
 
 NamesItem Name Property matchTextProperty change event matchTextChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-match-text-changed
- 
    
    text :string
- 
    
      The text string to apply highlighting to.- Default Value:
- ''
 
 NamesItem Name Property textProperty change event textChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-text-changed
Methods
- 
        
    
    
      getProperty(property) : {any}
- 
    
    
    Retrieves a value for a property or a single subproperty for complex properties.Parameters:Name Type Description propertystring The property name to get. Supports dot notation for subproperty access. Returns:- Type
- any
 
- 
        
    
    
      setProperties(properties) : {void}
- 
    
    
    Performs a batch set of properties.Parameters:Name Type Description propertiesObject An object containing the property and value pairs to set. Returns:- Type
- void
 
- 
        
    
    
      setProperty(property, value) : {void}
- 
    
    
    Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a [property]Changed event.Parameters:Name Type Description propertystring The property name to set. Supports dot notation for subproperty access. valueany The new value to set the property to. Returns:- Type
- void