Removes contiguous text items from a text element starting at a given index position.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub RemoveItems( _
   ByVal  As Integer, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As ImGearPDEText
Dim index As Integer
Dim count As Integer
 
instance.RemoveItems(index, count)
             
        
            
            public void RemoveItems( 
   int ,
   int 
)
             
        
            
            public: void RemoveItems( 
   int ,
   int 
) 
             
        
            
            public:
void RemoveItems( 
   int ,
   int 
) 
             
        
             
        
            Parameters
- index
 
- Index of the first text item in pdeText to remove.
 - count
 
- The number of text items to remove.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also