Aspose::Words::Fields::FieldPrint::get_PostScriptGroup method

FieldPrint::get_PostScriptGroup method

Gets or sets the drawing rectangle that the PostScript instructions operate on.

System::String Aspose::Words::Fields::FieldPrint::get_PostScriptGroup()

Examples

Shows to insert a PRINT field.

auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);

builder->Write(u"My paragraph");

// The PRINT field can send instructions to the printer.
auto field = System::ExplicitCast<FieldPrint>(builder->InsertField(FieldType::FieldPrint, true));

// Set the area for the printer to perform instructions over.
// In this case, it will be the paragraph that contains our PRINT field.
field->set_PostScriptGroup(u"para");

// When we use a printer that supports PostScript to print our document,
// this command will turn the entire area that we specified in "field.PostScriptGroup" white.
field->set_PrinterInstructions(u"erasepage");

ASSERT_EQ(u" PRINT  erasepage \\p para", field->GetFieldCode());

doc->UpdateFields();
doc->Save(ArtifactsDir + u"Field.PRINT.docx");

See Also