2003-11-04 23:20:15 +00:00
|
|
|
// TreeNodeValueAttribute.cs - Attribute to mark properties as TreeNode column values
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
|
|
//
|
|
|
|
// <c> 2003 Novell, Inc.
|
|
|
|
|
|
|
|
namespace Gtk {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
2003-11-05 21:25:32 +00:00
|
|
|
public sealed class TreeNodeValueAttribute : Attribute {
|
2003-11-04 23:20:15 +00:00
|
|
|
int col;
|
|
|
|
|
|
|
|
public int Column {
|
|
|
|
get {
|
|
|
|
return col;
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
col = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|