Condividi tramite


CBrush::GetLogBrush

Chiamare la funzione membro per recuperare la struttura LOGBRUSH.

int GetLogBrush(
   LOGBRUSH* pLogBrush 
);

Parametri

  • pLogBrush
    I punti su LOGBRUSH struttura che contiene informazioni sul pennello.

Valore restituito

Se la funzione ha esito positivo e pLogBrush è un puntatore valido, il valore restituito è il numero di byte memorizzati nel buffer.

Se la funzione ha esito positivo e pLogBrush è NULL, il valore restituito è il numero di byte necessari per utilizzare le informazioni che la funzione archivierebbe il buffer.

Se la funzione ha esito negativo, il valore restituito è 0.

Note

La struttura LOGBRUSH definisce lo stile, il colore e il modello di un pennello.

Ad esempio, chiamare GetLogBrush in base al colore o il modello specifica di una bitmap.

Esempio

// Example for CBrush::GetLogBrush
LOGBRUSH logbrush;
brushExisting.GetLogBrush( &logbrush );
CBrush brushOther( logbrush.lbColor);

// Another example
// Declare a LOGBRUSH
LOGBRUSH logBrush;

// Using a bitmap for this example.
// The bitmap should be a project resource.
CBitmap bm;
bm.LoadBitmap(IDB_BRUSH);

try
{
   // Create a brush
   CBrush brush1(&bm);

   // Use GetLogBrush to fill the LOGBRUSH structure
   brush1.GetLogBrush(&logBrush);

   // Create a second brush using the LOGBRUSH data
   CBrush brush2;
   brush2.CreateBrushIndirect(&logBrush);

   // Use the first brush
   CBrush* pOldBrush = (CBrush*)pDC->SelectObject(&brush1);
   pDC->Rectangle(CRect(50,50,150,150));

   // The second brush has the specified characteristics
   // of the first brush
   pDC->SelectObject(&brush2);
   pDC->Ellipse(200,50,300,150);

   // Reselect the original brush
   pDC->SelectObject(pOldBrush);
}
catch(CResourceException* e)
{
   e->ReportError();
   e->Delete();
}

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

Classe di CBrush

Grafico della gerarchia

LOGBRUSH

GetObject