Class LocalizableTextAreaAttribute
Same as TextAreaAttribute but used for LocalizableStrings.
Inherited Members
Namespace: Unity.Tutorials.Core.Editor
Syntax
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
public class LocalizableTextAreaAttribute : PropertyAttribute, _Attribute
Constructors
LocalizableTextAreaAttribute()
Default-constructs with default (3) number lines.
Declaration
public LocalizableTextAreaAttribute()
LocalizableTextAreaAttribute(Int32, Int32)
Constructs with desired number of lines.
Declaration
public LocalizableTextAreaAttribute(int minLines, int maxLines)
Parameters
Type | Name | Description |
---|---|---|
Int32 | minLines | |
Int32 | maxLines |
Fields
MaxLines
Maximum number of lines shown in the Inspector.
Declaration
public readonly int MaxLines
Field Value
Type | Description |
---|---|
Int32 |
MinLines
Minimum number of lines shown in the Inspector.
Declaration
public readonly int MinLines
Field Value
Type | Description |
---|---|
Int32 |