!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / TreeViewRowDrawEventArgs.cs
blobdec81eb59c77010c7649546ebcf917fdc56fcd1a
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Collections.Generic;
5 using System.Text;
6 using System.Windows.Forms;
7 using System.Drawing;
9 namespace Aga.Controls.Tree
11 public class TreeViewRowDrawEventArgs: PaintEventArgs
13 TreeNodeAdv _node;
14 DrawContext _context;
15 int _row;
16 Rectangle _rowRect;
18 public TreeViewRowDrawEventArgs(Graphics graphics, Rectangle clipRectangle, TreeNodeAdv node, DrawContext context, int row, Rectangle rowRect)
19 : base(graphics, clipRectangle)
21 _node = node;
22 _context = context;
23 _row = row;
24 _rowRect = rowRect;
27 public TreeNodeAdv Node
29 get { return _node; }
32 public DrawContext Context
34 get { return _context; }
37 public int Row
39 get { return _row; }
42 public Rectangle RowRect
44 get { return _rowRect; }