CompiledTextRunInstance Class

Represents a compiled text run instance generated from parsing HTML in a text run.

Inheritance Hierarchy

System.Object
  Microsoft.ReportingServices.OnDemandReportRendering.BaseInstance
    Microsoft.ReportingServices.OnDemandReportRendering.ReportElementInstance
      Microsoft.ReportingServices.OnDemandReportRendering.TextRunInstance
        Microsoft.ReportingServices.OnDemandReportRendering.CompiledTextRunInstance

Namespace:  Microsoft.ReportingServices.OnDemandReportRendering
Assembly:  Microsoft.ReportingServices.ProcessingCore (in Microsoft.ReportingServices.ProcessingCore.dll)

Syntax

'Declaration
Public NotInheritable Class CompiledTextRunInstance _
    Inherits TextRunInstance
'Usage
Dim instance As CompiledTextRunInstance
public sealed class CompiledTextRunInstance : TextRunInstance
public ref class CompiledTextRunInstance sealed : public TextRunInstance
[<SealedAttribute>]
type CompiledTextRunInstance =  
    class 
        inherit TextRunInstance 
    end
public final class CompiledTextRunInstance extends TextRunInstance

The CompiledTextRunInstance type exposes the following members.

Properties

  Name Description
Public property ActionInstance Gets an ActionInstance object that is compiled from HTML tags.
Public property Definition Gets the definition class of this TextRunInstance. (Inherited from TextRunInstance.)
Public property IsCompiled Indicates whether this text run instance is compiled from HTML tags. (Overrides TextRunInstance.IsCompiled.)
Public property MarkupType Gets the calculated value of the MarkupType property in the original TextRun definition object that contains the HTML. (Overrides TextRunInstance.MarkupType.)
Public property OriginalValue Gets the string value of the parsed text run. (Overrides TextRunInstance.OriginalValue.)
Public property ProcessedWithError Gets a Boolean value that indicates whether an error occurred while parsing the HTML. (Overrides TextRunInstance.ProcessedWithError.)
Public property Style Gets the calculated style of the TextRun definition object, or the parsed style values from the HTML, if any are present. (Overrides ReportElementInstance.Style.)
Public property ToolTip Gets the calculated value of the ToolTip property in the original TextRun definition object that contains the HTML. (Overrides TextRunInstance.ToolTip.)
Public property TypeCode Gets the type of the value contained in the text run instance. For compiled text runs, this is always String. (Overrides TextRunInstance.TypeCode.)
Public property UniqueName Gets the unique identifier of this instance object. (Overrides TextRunInstance.UniqueName.)
Public property Value Gets the string value of the parsed text run. (Overrides TextRunInstance.Value.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Remarks

One or more compiled CompiledParagraphInstance is generated from a parsed HTML, which in turn contains one or more compiled CompiledTextRunInstance. These compiled instance objects do not really have a one-to-one correspondence with definition objects.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.ReportingServices.OnDemandReportRendering Namespace