Gets the plain text of the table's caption.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public string CaptionPlainText { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property CaptionPlainText As String |
A string containing the plain text of the caption.
RemarksThis property removes any formatting tags from Caption and returns the plain human-readable text. That is useful when styled text is enabled and you need to display caption's content outside of MvcDiagram, that is, in a message box or a dialog box.
ExampleThe following sample code demonstrates how CaptionPlainText can be used.
C#
Copy Code
|
|---|
t.EnableStyledText = true; |
Visual Basic
Copy Code
|
|---|
t.EnableStyledText = True |
See Also