All Projects → viniciussanchez → DevExpress4Delphi

viniciussanchez / DevExpress4Delphi

Licence: Apache-2.0 license
Class helper for DevExpress components

Programming Languages

pascal
1382 projects

Projects that are alternatives of or similar to DevExpress4Delphi

TataruHelper
Tataru Helper - application for translation of in-game texts in Japan MMORPG - Final Fantasy XIV. The texts are understood as MSQ, cutscenes, quests, NPC replicas, etc.
Stars: ✭ 255 (+1059.09%)
Mutual labels:  helper
MagicaVoxel File Writer
MagicaVoxel File Writer dependency free cpp class
Stars: ✭ 26 (+18.18%)
Mutual labels:  helper
slicy
A set of typesafe chainable slice helpers to reduce pain of working with slices
Stars: ✭ 18 (-18.18%)
Mutual labels:  helper
EmptyLicensesLicx
Easy continuous integration of apps using third-party controls that rely on licenses.licx files
Stars: ✭ 57 (+159.09%)
Mutual labels:  devexpress
PREBorderView
A very simple Objective-C UIView category for specifying single-sided borders.
Stars: ✭ 18 (-18.18%)
Mutual labels:  helper
sendmessage
SendMessage is a little tool to send Windows messages to any window.
Stars: ✭ 93 (+322.73%)
Mutual labels:  helper
SettingsUI
Windows 11 settings page in WinUI 3 applications ported from Powertoys
Stars: ✭ 95 (+331.82%)
Mutual labels:  helper
RaycastVisualization
This asset allows users to view raycasts as the user fires them.
Stars: ✭ 61 (+177.27%)
Mutual labels:  helper
xd-storage-helper
A little helper to make storing key-value-pairs (e.g. settings) for Adobe XD plugins easier.
Stars: ✭ 22 (+0%)
Mutual labels:  helper
IDCardNumber-Validator
An Objective-C & Swift implementation to (check) validate Chinese ID Card No. 身份证号码验证
Stars: ✭ 15 (-31.82%)
Mutual labels:  helper
permissionUtil
Simple permission helper
Stars: ✭ 64 (+190.91%)
Mutual labels:  helper
full-stack-tdc-poa
Projeto full stack Delphi MVC Framework e DevExtreme React.js
Stars: ✭ 16 (-27.27%)
Mutual labels:  devexpress
nest-abstract
NestJs Abstraction Helper
Stars: ✭ 36 (+63.64%)
Mutual labels:  helper
dotnet-eud
DevExpress .NET Controls End-User Documentation
Stars: ✭ 50 (+127.27%)
Mutual labels:  devexpress
UCAS-Helper
国科大(UCAS, ucas)校园网登录、课程资源下载、自动评教和分数查询助手
Stars: ✭ 105 (+377.27%)
Mutual labels:  helper
craft-helper
A collection of useful Craft CMS macros and components.
Stars: ✭ 23 (+4.55%)
Mutual labels:  helper
csshelper
CSS helper, forget traditional css frameworks approach, every class is a task-like
Stars: ✭ 14 (-36.36%)
Mutual labels:  helper
dashboard-extension-simple-table
⛔ DEPRECATED. This project was moved to a new repository. Visit https://github.com/DevExpress/dashboard-extensions to find an updated version.
Stars: ✭ 37 (+68.18%)
Mutual labels:  devexpress
git-cheatsheet
One stop guide to help solve all your doubts related to Git & GitHub.
Stars: ✭ 31 (+40.91%)
Mutual labels:  helper
ideas
Идеи по улучшению языка C++ для обсуждения
Stars: ✭ 65 (+195.45%)
Mutual labels:  helper

DevExpress Helper for Delphi

Delphi Supported Versions Platforms

DevExpress4Delphi is a class helper for DevExpress components.

Prerequisites

  • DevExpress - VCL Components for Delphi and C++Builder
  • [Optional] For ease I recommend using the Boss (Dependency Manager for Delphi) for installation

Installation using Boss (dependency manager for Delphi applications)

boss install github.com/viniciussanchez/DevExpress4Delphi

Manual Installation

Add the following folders to your project, in Project > Options > Resource Compiler > Directories and Conditionals > Include file search path

../DevExpress4Delphi/src/core
../DevExpress4Delphi/src/helpers
../DevExpress4Delphi/src/interfaces
../DevExpress4Delphi/src/types

Getting Started

You need to use DevExpress.Helper

uses DevExpress.Helper;

Export

You can pass two parameters:

  • AOpenFileAfter: Open file after export. Default is True.
  • AExpand: Expand records. Default is True.

Exporting to Excel

begin
  cxGrid1.ExportToExcel();
end;

Exporting to HTML

begin
  cxGrid1.ExportToHTML();
end;

Exporting to XML

begin
  cxGrid1.ExportToXML();
end;

Exporting to file text

begin
  cxGrid1.ExportToTXT();
end;

Adjust the size of the column

You can pass parameter:

  • AMaxWidth: Refers the maximum column width.
begin
  cxGrid1DBTableViewNAME.Resize();  
end;

Samples

Exporting to excel:

DevExpress4Delphi

Adjusting the size of the column so that there is no white space on the grid:

DevExpress4Delphi

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].