Files
GTA4RP/third-party/mexui/Core/Entry/GridColumn.js
Vortrex caa6b3986f Revert "Update xml"
This reverts commit 9b8d1f2257.
2021-01-26 04:16:05 -06:00

9 lines
271 B
JavaScript

mexui.Entry.GridColumn = function(grid, text, width, height)
{
mexui.Component.Entry.call(this, grid, 0);
this.text = text || 'Column';
this.width = width || 100;
this.height = height || 25;
};
mexui.util.extend(mexui.Entry.GridColumn, mexui.Component.Entry);