Contents - Methods - Properties
Imagemap area used by TFRImage to describe image map
Description
Incapsulates HTML map area element <AREA...>Map areas are created and managed at design time by TFRImage's component editor (or property USEMAP editor).
Contents - TFRImageMapArea - Properties
~TFRImageMapArea
DestructorCreate
Delphi declarationSetCoords
constructor Create(AOwner: TComponent);
Setting all map area rectangle coordinates at same timeTFRImageMapAreaDelphi declaration
procedure SetCoords(ALeft, ATop, ARight, ABottom: Integer);
C++ declaration
void __fastcall SetCoords(int ALeft, int ATop, int ARight, int ABottom)
Description
Used internally at design time .
ConstructorC++ declaration
__fastcall virtual TFRImageMapArea(Classes::TComponent *AOwner)
Contents - TFRImageMapArea - Methods
ALT
Alternate textCoordsRectTextDelphi declaration
property ALT: string read FAlt write FAlt;
C++ declaration
__property System::AnsiString ALT={ read=FAlt, write=FAlt, nodefault }
Description
Results as <AREA...ALT="Value"...>
Map area coordinates as textHREFDelphi declaration
property CoordsRectText: string read GetCoordsRectText;
C++ declaration
__property System::AnsiString CoordsRectText={ read=GetCoordsRectText, nodefault }
Description
Used at design time by property editor .
HREF_TARGETDelphi declaration
property HREF: AnsiString read GetHREF write SetHREF;
C++ declaration
__property System::AnsiString HREF={ read=GetHREF, write=SetHREF, nodefault }
Description
Use HREF property to set HTML HREF. HREF is t he link where t he browser will go when t he user clicks on the HTML element.For example , HREF="www.someplace.com" will redirect your b rowser to www.someplace.com website.
HREF="mailto:some.person@someplace.com" will invoke default e-mail programm e to sen d mail .
HREF="javascript:MyFun(1,'oops')" will execute javascript function MyFun with parameters 1 and oops.
HTMLCoordsTextDelphi declaration
property HREF_TARGET: AnsiString read GetTARGET write FRefTarget;
C++ declaration
__property System::AnsiString HREF_TARGET={ read=GetTARGET, write=FRefTarget, nodefault }
Description
HREF_TARGET specifies t he window where HREF will be opened.By default, HREF will be opened in the same window where the HREF link is defined.
Map area coordinates as HTML textONBLURDelphi declaration
property HTMLCoordsText: string read GetHTMLCoordsText;
C++ declaration
__property System::AnsiString HTMLCoordsText={ read=GetHTMLCoordsText, nodefault }
Description
Used at runtime. When Shape is shapCircle, circle coordinates are created that fit into area rectangle.Results as COORDS="left, top, right, bottom" or COORDS="center-x, center-y, radius".
ONCLICKDelphi declaration
property ONBLUR: string read FONBLUR write FONBLUR;
C++ declaration
__property System::AnsiString ONBLUR={ read=FONBLUR, write=FONBLUR, nodefault }
Description
Use this property to set ONBLUR HTML event for map area at designtime .
ONDBLCLICKDelphi declaration
property ONCLICK: string read FONCLICK write FONCLICK;
C++ declaration
__property System::AnsiString ONCLICK={ read=FONCLICK, write=FONCLICK, nodefault }
Description
Use this property to set ONCLICK HTML event for map area at designtime .
ONFOCUSDelphi declaration
property ONDBLCLICK: string read FONDBLCLICK write FONDBLCLICK;
C++ declaration
__property System::AnsiString ONDBLCLICK={ read=FONDBLCLICK, write=FONDBLCLICK, nodefault }
Description
Use this property to set ONDBLCLICK HTML event for map area at designtime .
ONKEYDOWNDelphi declaration
property ONFOCUS: string read FONFOCUS write FONFOCUS;
C++ declaration
__property System::AnsiString ONFOCUS={ read=FONFOCUS, write=FONFOCUS, nodefault }
Description
Use this property to set ONFOCUS HTML event for map area at designtime .
ONKEYPRESSDelphi declaration
property ONKEYDOWN: string read FONKEYDOWN write FONKEYDOWN;
C++ declaration
__property System::AnsiString ONKEYDOWN={ read=FONKEYDOWN, write=FONKEYDOWN, nodefault }
Description
Use this property to set ONKEYDOWN HTML event for map area at designtime .
ONKEYUPDelphi declaration
property ONKEYPRESS: string read FONKEYPRESS write FONKEYPRESS;
C++ declaration
__property System::AnsiString ONKEYPRESS={ read=FONKEYPRESS, write=FONKEYPRESS, nodefault }
Description
Use this property to set ONKEYPRESS HTML event for map area at designtime .
ONMOUSEDOWNDelphi declaration
property ONKEYUP: string read FONKEYUP write FONKEYUP;
C++ declaration
__property System::AnsiString ONKEYUP={ read=FONKEYUP, write=FONKEYUP, nodefault }
Description
Use this property to set ONKEYUP HTML event for map area at designtime .
ONMOUSEMOVEDelphi declaration
property ONMOUSEDOWN: string read FONMOUSEDOWN write FONMOUSEDOWN;
C++ declaration
__property System::AnsiString ONMOUSEDOWN={ read=FONMOUSEDOWN, write=FONMOUSEDOWN, nodefault }
Description
Use this property to set ONMOUSEDOWN HTML event for map area at designtime .
ONMOUSEOUTDelphi declaration
property ONMOUSEMOVE: string read FONMOUSEMOVE write FONMOUSEMOVE;
C++ declaration
__property System::AnsiString ONMOUSEMOVE={ read=FONMOUSEMOVE, write=FONMOUSEMOVE, nodefault }
Description
Use this property to set ONMOUSEMOVE HTML event for map area at designtime .
ONMOUSEOVERDelphi declaration
property ONMOUSEOUT: string read FONMOUSEOUT write FONMOUSEOUT;
C++ declaration
__property System::AnsiString ONMOUSEOUT={ read=FONMOUSEOUT, write=FONMOUSEOUT, nodefault }
Description
Use this property to set ONMOUSEOUT HTML event for map area at designtime .
ONMOUSEUPDelphi declaration
property ONMOUSEOVER: string read FONMOUSEOVER write FONMOUSEOVER;
C++ declaration
__property System::AnsiString ONMOUSEOVER={ read=FONMOUSEOVER, write=FONMOUSEOVER, nodefault }
Description
Use this property to set ONMOUSEOVER HTML event for map area at designtime .
RectBottomDelphi declaration
property ONMOUSEUP: string read FONMOUSEUP write FONMOUSEUP;
C++ declaration
__property System::AnsiString ONMOUSEUP={ read=FONMOUSEUP, write=FONMOUSEUP, nodefault }
Description
Use this property to set ONMOUSEUP HTML event for map area at designtime .
Map area rectangle bottom coordinateRectLeftDelphi declaration
property RectBottom: Integer read FRectBottom write SetRectBottom;
C++ declaration
__property int RectBottom={ read=FRectBottom, write=SetRectBottom, nodefault }
Description
Map area rectangle left coordinateRectRightDelphi declaration
property RectLeft: Integer read FRectLeft write SetRectLeft;
C++ declaration
__property int RectLeft={ read=FRectLeft, write=SetRectLeft, nodefault }
Description
Map area rectangle right coordinateRectTopDelphi declaration
property RectRight: Integer read FRectRight write SetRectRight;
C++ declaration
__property int RectRight={ read=FRectRight, write=SetRectRight, nodefault }
Description
Map area rectangle top coordinateShapeDelphi declaration
property RectTop: Integer read FRectTop write SetRectTop;
C++ declaration
__property int RectTop={ read=FRectTop, write=SetRectTop, nodefault }
Description
Shape typeDelphi declaration
property Shape: TFRImageMapAreaShapes read FShape write SetShape default shapRect;
C++ declaration
__property TFRImageMapAreaShapes Shape={ read=FShape, write=SetShape, default=0 }
Description
At design time , circle coordinates are stored as a rectangle around t he circle .