Sdílet prostřednictvím


CWnd::SetCaretPos

Nastaví umístění znaku stříšky.

static void PASCAL SetCaretPos(
   POINT point 
);

Parametry

  • point
    Určuje nový x a y souřadnice stříška (v souřadnicích klienta).

Poznámky

SetCaretPos Členské funkce přesune stříška, pouze pokud je vlastníkem okna v aktuální úkol.SetCaretPosPřesune stříška stříška je skrytá nebo ne.

Stříška je sdílený prostředek.Okno neměli přesunovat stříška, pokud není vlastníkem stříška.

Příklad

// The following code snippet shows a caret when the left 
// mouse button is pressed, and sets the caret's positon to 
// the cursor's position.
void CMyView::OnLButtonDown(UINT nFlags, CPoint point) 
{
   //create a solid caret, the width is 2, the length is 20.
   CreateSolidCaret(2, 20);

   SetCaretPos(point);
   ShowCaret();

   CView::OnLButtonDown(nFlags, point);
}

Požadavky

Záhlaví: afxwin.h

Viz také

Referenční dokumentace

Třída CWnd

Diagram hierarchie

CWnd::GetCaretPos

SetCaretPos