Class CreateTextBlockEventArgs
An event arguments of CreateTextBlockEventHandler
Inheritance
System.Object
    System.EventArgs
    CreateTextBlockEventArgs
  Inherited Members
      System.EventArgs.Empty
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class CreateTextBlockEventArgs : EventArgs
  Constructors
CreateTextBlockEventArgs(String, ITextBlock)
Declaration
public CreateTextBlockEventArgs(string text, ITextBlock textBlock)
  Parameters
| 
        System.String
        text
         
  | 
    
| 
        ITextBlock
        textBlock
         
  | 
    
Properties
Text
Gets the text for which the block is created.
Declaration
public string Text { get; }
  Property Value
| 
        System.String
         
  | 
    
TextBlock
Gets or sets the text block.
Declaration
public ITextBlock TextBlock { get; set; }
  Property Value
| 
        ITextBlock
         The text block.  |