Provided by: tk8.4-doc_8.4.20-7_all bug

NAME

       Tk_GetAnchorFromObj, Tk_GetAnchor, Tk_NameOfAnchor - translate between strings and anchor positions

SYNOPSIS

       #include <tk.h>

       int                                                                                                       2
       Tk_GetAnchorFromObj(interp, objPtr, anchorPtr)                                                            2

       int
       Tk_GetAnchor(interp, string, anchorPtr)

       CONST char *
       Tk_NameOfAnchor(anchor)

ARGUMENTS

       Tcl_Interp  *interp      (in)      Interpreter to use for error reporting, or NULL.

       Tcl_Obj     *objPtr      (in/out)                                                                         2
                                          String  value  contains  name of anchor point: n, ne, e, se, s, sw, w, 2
                                          nw, or center; internal rep will be modified  to  cache  corresponding 2
                                          Tk_Anchor.                                                             2

       CONST char  *string      (in)                                                                             2
                                          Same  as  objPtr  except  description  of  anchor point is passed as a 2
                                          string.

       int         *anchorPtr   (out)     Pointer to location in which to store anchor position corresponding to
                                          objPtr or string.

       Tk_Anchor   anchor       (in)      Anchor position, e.g. TCL_ANCHOR_CENTER.
_________________________________________________________________

DESCRIPTION

       Tk_GetAnchorFromObj places in *anchorPtr an anchor position (enumerated type Tk_Anchor) corresponding  to 2
       objPtr's  value.   The  result  will  be  one  of  TK_ANCHOR_N,  TK_ANCHOR_NE, TK_ANCHOR_E, TK_ANCHOR_SE, 2
       TK_ANCHOR_S,  TK_ANCHOR_SW,  TK_ANCHOR_W,  TK_ANCHOR_NW,  or  TK_ANCHOR_CENTER.   Anchor  positions   are 2
       typically  used  for  indicating  a  point  on  an  object that will be used to position the object, e.g. 2
       TK_ANCHOR_N means position the top center point of the object at a particular place.                      2

       Under normal circumstances the return value is TCL_OK and interp is unused.  If string doesn't contain  a 2
       valid  anchor  position  or  an  abbreviation of one of these names, TCL_ERROR is returned, *anchorPtr is 2
       unmodified, and an error message is stored in interp's result if interp isn't NULL.   Tk_GetAnchorFromObj 2
       caches  information about the return value in objPtr, which speeds up future calls to Tk_GetAnchorFromObj 2
       with the same objPtr.                                                                                     2

       Tk_GetAnchor is identical to Tk_GetAnchorFromObj except that the description of the anchor  is  specified 2
       with  a  string  instead  of  an  object.   This  prevents Tk_GetAnchor from caching the return value, so 2
       Tk_GetAnchor is less efficient than Tk_GetAnchorFromObj.

       Tk_NameOfAnchor is the logical inverse of Tk_GetAnchor.  Given an anchor position such as TK_ANCHOR_N  it
       returns  a  statically-allocated  string  corresponding to anchor.  If anchor isn't a legal anchor value,
       then ``unknown anchor position'' is returned.

KEYWORDS

       anchor position

Tk                                                     8.1                              Tk_GetAnchorFromObj(3tk)