Files
wg_cpso/CPSO/Forms/82_ResultFieldOutput/ViewResultFieldOutput.cs
2026-03-25 18:20:24 +08:00

33 lines
1014 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using CaeGlobals;
using DynamicTypeDescriptor;
namespace CPSO
{
[Serializable]
public abstract class ViewResultFieldOutput
{
// Variables
protected DynamicCustomTypeDescriptor _dctd = null;
// Properties
[Category("Data")]
[OrderedDisplayName(0, 10, "Name")]
[Description("Name of the field output.")]
public abstract string Name { get; set; }
// Constructors
// Methods
public abstract CaeResults.ResultFieldOutput GetBase();
}
}