Compartilhar via


CEditView::SetTabStops

Chamar essa função para definir as paradas de tabulação usadas para exibição e a impressão.

void SetTabStops( 
   int nTabStops  
);

Parâmetros

  • nTabStops
    Largura de cada parada de tabulação, em unidades de diálogo.

Comentários

Somente uma única largura de tabulação é suportada. (larguras da guia da suporte de objetos deCEdit múltiplas.) As larguras estão em unidades da caixa de diálogo, que são iguais a largura de um quarto caractere média (com base em maiúsculas e minúsculas em caracteres alfabéticos em somente) da fonte usada no momento de impressão ou exibir. Você não deve usar CEdit::SetTabStops porque CEditView deve armazenar em cache o valor de tabulação.

Essa função altera somente as guias do objeto para que é chamada. Para alterar as paradas de tabulação para cada CEditView objeto no seu aplicativo, chama a função de SetTabStops de cada objeto.

Exemplo

O fragmento de código a seguir define as paradas de tabulação no controle para cada quarto caractere cuidadosamente medindo a fonte que o controle usa.

// gain a reference to the edit control
CEdit& theEdit = GetEditCtrl();

// get the font the control is using
CFont* pFont = theEdit.GetFont();
TEXTMETRIC tm;

// get the control's DC, too
CDC* pDC = theEdit.GetDC();

// Select the font that the control uses by default into the DC. 
// We must do this because the control may or may not be using 
// that font at this exact moment
CFont* pOldFont = pDC->SelectObject(pFont);

// Retrieve text metrics for that font and return the previously 
// selected font.
pDC->GetTextMetrics(&tm);
pDC->SelectObject(pOldFont);

// Get an identity rectangle and map it to dialog units
CRect rect(0, 0, 100, 1);
::MapDialogRect((HWND)this, rect);

// We now know that 100 dialog units are rect.Width() screen units, 
// so we can multiply screen units by 100 and divide by rect.Width() 
// to find dialog units from screen units. tm.tmAveCharWidth is 
// the width of _one_ character, so setting the tabs at every 
// four characters means we also multiply by four.
SetTabStops((4 * tm.tmAveCharWidth * 100) / rect.Width());

Requisitos

Cabeçalho: afxext.h

Consulte também

Referência

Classe CEditView

Gráfico da hierarquia

CWnd::SetFont

CEditView::SetPrinterFont