Classe CBitmapRenderTarget
Wrapper per ID2D1BitmapRenderTarget.
Sintassi
class CBitmapRenderTarget : public CRenderTarget;
Membri
Costruttori pubblici
Nome | Descrizione |
---|---|
CBitmapRenderTarget::CBitmapRenderTarget | Costruisce un oggetto CBitmapRenderTarget. |
Metodi pubblici
Nome | Descrizione |
---|---|
CBitmapRenderTarget::Attach | Collega l'interfaccia di destinazione di rendering esistente all'oggetto |
CBitmapRenderTarget::D etach | Scollega l'interfaccia di destinazione di rendering dall'oggetto |
CBitmapRenderTarget::GetBitmap | Recupera la bitmap per questa destinazione di rendering. La bitmap restituita può essere utilizzata per le operazioni di disegno. |
CBitmapRenderTarget::GetBitmapRenderTarget | Restituisce l'interfaccia ID2D1BitmapRenderTarget |
Operatori pubblici
Nome | Descrizione |
---|---|
CBitmapRenderTarget::operator ID2D1BitmapRenderTarget* | Restituisce l'interfaccia ID2D1BitmapRenderTarget |
Membri dati protetti
Nome | Descrizione |
---|---|
CBitmapRenderTarget::m_pBitmapRenderTarget | Puntatore a un oggetto ID2D1BitmapRenderTarget. |
Gerarchia di ereditarietà
CBitmapRenderTarget
Requisiti
Intestazione: afxrendertarget.h
CBitmapRenderTarget::Attach
Collega l'interfaccia di destinazione di rendering esistente all'oggetto
void Attach(ID2D1BitmapRenderTarget* pTarget);
Parametri
pTarget
Interfaccia di destinazione di rendering esistente. Non può essere NULL
CBitmapRenderTarget::CBitmapRenderTarget
Costruisce un oggetto CBitmapRenderTarget.
CBitmapRenderTarget();
CBitmapRenderTarget::D etach
Scollega l'interfaccia di destinazione di rendering dall'oggetto
ID2D1BitmapRenderTarget* Detach();
Valore restituito
Puntatore all'interfaccia di destinazione di rendering scollegata.
CBitmapRenderTarget::GetBitmap
Recupera la bitmap per questa destinazione di rendering. La bitmap restituita può essere utilizzata per le operazioni di disegno.
BOOL GetBitmap(CD2DBitmap& bitmap);
Parametri
bitmap
Quando termina, questo metodo contiene la bitmap valida per questa destinazione di rendering. Questa bitmap può essere utilizzata per le operazioni di disegno.
Valore restituito
Se il metodo ha esito positivo, restituisce TRUE. In caso contrario, restituisce FALSE.
CBitmapRenderTarget::GetBitmapRenderTarget
Restituisce l'interfaccia ID2D1BitmapRenderTarget
ID2D1BitmapRenderTarget* GetBitmapRenderTarget();
Valore restituito
Puntatore a un'interfaccia ID2D1BitmapRenderTarget o NULL se l'oggetto non è ancora inizializzato.
CBitmapRenderTarget::m_pBitmapRenderTarget
Puntatore a un oggetto ID2D1BitmapRenderTarget.
ID2D1BitmapRenderTarget* m_pBitmapRenderTarget;
CBitmapRenderTarget::operator ID2D1BitmapRenderTarget*
Restituisce l'interfaccia ID2D1BitmapRenderTarget
operator ID2D1BitmapRenderTarget*();
Valore restituito
Puntatore a un'interfaccia ID2D1BitmapRenderTarget o NULL se l'oggetto non è ancora inizializzato.