Condividi tramite


Interfaccia IXpsOMMatrixTransform (xpsobjectmodel.h)

Specifica una trasformazione matrice affine che può essere applicata ad altri oggetti nel modello a oggetti.

Ereditarietà

L'interfaccia IXpsOMMatrixTransform eredita da IXpsOMShareable. IXpsOMMatrixTransform include anche questi tipi di membri:

Metodi

L'interfaccia IXpsOMMatrixTransform include questi metodi.

 
IXpsOMMatrixTransform::Clone

Crea una copia completa dell'interfaccia. (IXpsOMMatrixTransform.Clone)
IXpsOMMatrixTransform::GetMatrix

Ottiene la struttura XPS_MATRIX, che specifica la matrice di trasformazione.
IXpsOMMatrixTransform::SetMatrix

Imposta la struttura XPS_MATRIX, che specifica la matrice di trasformazione.

Commenti

L'esempio di codice seguente illustra come creare un'istanza di questa interfaccia.


IXpsOMMatrixTransform    *newInterface;
// The following value is defined outside of 
// this example.
XPS_MATRIX        newMatrix;

// Note the implicit requirement that CoInitializeEx 
//  has previously been called from this thread.

hr = CoCreateInstance(
    __uuidof(XpsOMObjectFactory),
    NULL,
    CLSCTX_INPROC_SERVER,
    _uuidof(IXpsOMObjectFactory),
    reinterpret_cast<LPVOID*>(&xpsFactory)
    );

if (SUCCEEDED(hr))
{
    hr = xpsFactory->CreateMatrixTransform (
        &newMatrix,
        &newInterface);

    if (SUCCEEDED(hr))
    {
        // use newInterface

        newInterface->Release();
    }
    xpsFactory->Release();
}
else
{
    // evaluate HRESULT error returned in hr
}

Requisiti

   
Client minimo supportato Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [app desktop | App UWP]
Server minimo supportato Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [app desktop | App UWP]
Piattaforma di destinazione Windows
Intestazione xpsobjectmodel.h

Vedi anche

IXpsOMObjectFactory::CreateMatrixTransform

IXpsOMShareable

Interfacce

XML Paper Specification

XPS_MATRIX