16 lines
435 B
C#
16 lines
435 B
C#
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Instructs UI editor to use multiline textbox for editing <see cref="String"/> property or field.
|
|
/// </summary>
|
|
/// <seealso cref="System.Attribute" />
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public sealed class MultilineTextAttribute : Attribute
|
|
{
|
|
}
|
|
}
|