ecere/gui/DropBox: Added lastRow property
authorJerome St-Louis <jerome@ecere.com>
Fri, 19 Sep 2014 22:18:34 +0000 (18:18 -0400)
committerJerome St-Louis <jerome@ecere.com>
Sun, 15 Feb 2015 18:38:00 +0000 (13:38 -0500)
ecere/src/gui/controls/DropBox.ec

index 379c7ef..9f56dbf 100644 (file)
@@ -121,6 +121,7 @@ public:
       get { return currentRow; }
    };
    property DataRow firstRow { get { return this ? listBox.firstRow : null; } };
+   property DataRow lastRow { get { return this ? listBox.lastRow : null; } };
    property const char * contents { property_category $"Data" set { if(editBox) editBox.contents = value; } get { return editBox ? editBox.contents : null; } };
    property bool editText
    {