Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
FLabel.h
Package: FLabel.rar [view]
Upload User: hnxhmj
Upload Date: 2020-10-13
Package Size: 14k
Code Size: 1k
Category:
Static control
Development Platform:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef FLabelH
- #define FLabelH
- //---------------------------------------------------------------------------
- #include <SysUtils.hpp>
- #include <Controls.hpp>
- #include <Classes.hpp>
- #include <Forms.hpp>
- #include <StdCtrls.hpp>
- //---------------------------------------------------------------------------
- class PACKAGE TFLabel : public TLabel
- {
- private:
- int FTextSpace;
- void __fastcall SetTextSpace(int Value);
- int FBorder;
- void __fastcall SetBorder(int Value);
- protected:
- DYNAMIC void __fastcall DoDrawText(TRect &Rect, int Flags);
- void __fastcall TFLabel::Paint();
- public:
- __fastcall TFLabel(TComponent* Owner);
- __published:
- __property int __fastcall TextSpace = {read=FTextSpace,write=SetTextSpace,default=0};
- __property int __fastcall Border = {read=FBorder,write=SetBorder,default=0};
- };
- //---------------------------------------------------------------------------
- #endif