Class FamosFileText
Contains a named text or a list of texts.
Namespace: ImcFamosFile
Assembly: ImcFamosFile.dll
Syntax
public class FamosFileText : FamosFileBaseProperty
Constructors
| Improve this Doc View SourceFamosFileText(String, List<String>)
Initializes a new instance of the FamosFileText class.
Declaration
public FamosFileText(string name, List<string> texts)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the text. |
System.Collections.Generic.List<System.String> | texts | A list of texts. |
FamosFileText(String, String)
Initializes a new instance of the FamosFileText class.
Declaration
public FamosFileText(string name, string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the text. |
System.String | text | A single text. |
Properties
| Improve this Doc View SourceComment
Gets or sets the comment.
Declaration
public string Comment { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
Gets the text.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
Texts
Gets the list of texts.
Declaration
public List<string> Texts { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |