Sample implementation of the Redo method
void Redo(IFileDocument *pFileDocument)
{
VARIANT_BOOL bCanRedo;
pFileDocument->get_CanRedo(&bCanRedo);
if (bCanRedo == VARIANT_TRUE)
pFileDocument->Redo();
}
Sample implementation of the Redo method
public void Redo(IFileDocument fdoc)
{
if (fdoc.CanRedo)
fdoc.Redo();
}