autostrs.pas
来自「delphi编程控件」· PAS 代码 · 共 114 行
PAS
114 行
unit autostrs;
(*
COPYRIGHT (c) RSD Software 1997 - 98
All Rights Reserved.
*)
interface
const
{Common button captions} // 37301 - 37350
ACB_OK = 37301; //'Ok'
ACB_CANCEL = 37302; //'Cancel'
ACB_HELP = 37303; //'Help'
ACB_CLOSE = 37304; //'Close'
ACB_DEFAULT = 37305; //'Default'
ACB_ADD = 37310; //'Add'
ACB_ADDEX = 37311; //'Add ...'
ACB_INSERT = 37312; //'Insert'
ACB_INSERTEX = 37313; //'Insert ...'
ACB_DELETE = 37314; //'Delete'
ACB_RENAME = 37315; //'Rename'
ACB_RENAMEEX = 37316; //'Rename ...'
ACB_CLEAR = 37317; //'Clear'
ACB_MOVEUP = 37318; //'Move Up'
ACB_MOVEDOWN = 37319; //'Move Down'
ACB_EDIT = 37320; //'Edit'
ACB_EDITEX = 37321; //'Edit ...'
{Property and Component editors captions} //37401 - 37450
//AutoImage Controls
AEC_IMAGECONTROLS_ITEMS = 37401; //'AutoImage Items editor: '
//AutoSpinImage
AEC_SPINIMAGE_ITEMS = 37402; //'AutoSpinImage Items editor: '
//AutoOutLookBar
AEC_OUTLOOKBARSTORE = 37403;//'AutoOutLookBarStore Editor: '
AEC_OUTLOOKBAR = 37404; //'AutoOutLookBar Editor: '
AEC_OUTLOOKBARCUSTOMIZE = 37405;//'Customize'
AEC_OUTLOOKBARCATEGORYADD = 37406; //'Add New Category';
AEC_OUTLOOKBARCATEGORYINSERT = 37407; //'Insert New Category';
AEC_OUTLOOKBARCATEGORYRENAME = 37408; //'Rename the Category';
// Properties Store
AEC_PROPERTIESSTORE = 37409; //'AutoPropertiesStore Editor'
{Property and Component editors button captions} // 37501 - 37550
// Standart button for property editors
AEB_ADD = 37501; // '&Add'
AEB_INSERT = 37502; // '&Insert'
AEB_DELETE = 37503; // 'De&lete'
AEB_CLEAR = 37504; // 'Clear'
AEB_UP = 37505; // 'Move &Up'
AEB_DOWN = 37506; // 'Move dow&n'
{Property and Component editors label captions}
AEL_CAPTION = 37551; // 'Caption'
AEL_CATEGORIES = 37552; // 'Categories'
AEL_CATEGORYNAME = 37553; // 'Category Name:'
AEL_CUSTOMDATA = 37554; // 'Custom Data'
AEL_GROUPS = 37555; // 'Groups'
AEL_HINT = 37556; // 'Hint'
AEL_ICONTYPE = 37557; // 'Icon type'
AEL_ICONTYPELAGRE = 37558; // 'Large'
AEL_ITEMS = 37559; // 'Items'
AEL_IMAGEINDEX = 37560; // 'Image Index'
AEL_LARGEIMAGE = 37561; // 'Large Image'
AEL_SMALLIMAGE = 37562; // 'Small Image'
AEL_NEWITEM = 37563; // 'New item'
AEL_STOREDITEMS = 37564; // 'Stored Items'
AEL_TAG = 37565; // 'Tag'
AEL_TEXT = 37566; // 'Text'
AEL_VALUE = 37567; // 'Value'
AEL_ITEMPROPETIES = 37568; // 'Item properties'
AEL_SETDEFITEMPROP = 37569; // 'Set default item properties'
// Properties Store
AEL_PROPSTORE_ALLP = 37571; //'All properties'
AEL_PROPSTORE_STOREDP = 37572; //'Stored properties'
AEL_PROPSTORE_NONSTOREDP = 37573; //'Non stored properties'
AEL_PROPSTORE_VIETYPE = 37574; //'View Type'
AEL_PROPSTORE_VTDEFAULT = 37575; //'Default'
AEL_PROPSTORE_VTCLASSES = 37576; //'Group by classes'
AEL_PROPSTORE_VTPROPERTIES = 37577; //'Group by properties'
AEL_PROPSTORE_VTCLASSESPROPERTIES = 37578; //'Group by classes and properties'
AEL_PROPSTORE_VTPROPERTIESCLASSES = 37579; //'Group by properties and classes'
AEL_PROPSTORE_TYPEKINDS = 37580; //'Type kinds'
AEL_PROPSTORE_ALLTYPEKINDS = 37581; //'All type kinds'
AEL_PROPSTORE_HELP1 = 37582; //'All type kinds'
{Constant strings which are using in Run-time} //37601 - 37700
//Auto OutlookBar
AS_OLB_DEFAULTGROUP = 37601; //'Default'
AS_OLB_DEFAULTITEMCAPTION = 37602; //'New Item'
AS_OLB_DEFAULTGROUPCAPTION = 37603; // 'New Group'
//PopupMenu
AS_OLB_ADDGROUP = 37604; //'Add Group';
AS_OLB_REMOVEGROUP = 37605; //'Remove Group';
AS_OLB_RENAMEGROUP = 37606; //'Rename Group';
AS_OLB_REMOVEITEM = 37607; //'Remove ShortCut';
AS_OLB_RENAMEITEM = 37608; //'Rename ShortCut';
AS_OLB_LARGEICONTYPE = 37609; //'Large Icons';
AS_OLB_SMALLICONTYPE = 37610; //'Small Icons';
AS_OLB_CUSTOMIZE = 37611; //'Customize...';
{Errors} //37701 - 37750
//Auto OutlookBar
AE_OLB_CANTDELETEGROUP = 37701; //'Can't delete the group. It has items.'
AE_OLB_BARHASNOTSTORE = 37702; //'The "store" property doesn't assign. Assign it before edit.'
AE_OLB_STOREBARNOITEM = 37703; //'The %s has not stored items'
implementation
{$R autostrs.res}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?