Aspose::Cells::Slicers::Slicer::SetPlacement method

Slicer::SetPlacement method

Represents the way the drawing object is attached to the cells below it. The property controls the placement of an object on a worksheet.

void Aspose::Cells::Slicers::Slicer::SetPlacement(PlacementType value)

Examples

if (slicer.GetPlacement() != PlacementType::FreeFloating)
{
    slicer.SetPlacement(PlacementType::FreeFloating);
}

See Also