Class LocalizableTextAreaAttribute
Same as TextAreaAttribute but used for LocalizableStrings.
Implements
Inherited Members
Namespace: Unity.Tutorials.Core.Editor
Assembly: Unity.Tutorials.Core.Editor.dll
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(int, int)
Constructs with desired number of lines.
Declaration
public LocalizableTextAreaAttribute(int minLines, int maxLines)
Parameters
Type | Name | Description |
---|---|---|
int | minLines | The minimum number of lines for that TextArea |
int | maxLines | The maximum number of lines for that TextArea |
Fields
MaxLines
Maximum number of lines shown in the Inspector.
Declaration
public readonly int MaxLines
Field Value
Type | Description |
---|---|
int |
MinLines
Minimum number of lines shown in the Inspector.
Declaration
public readonly int MinLines
Field Value
Type | Description |
---|---|
int |