API Documentation > Interfaces > Interface SuppressOperation
Interface SuppressOperation

package com.ptc.pfc.pfcFeature;

public interface
SuppressOperation
extends
com.ptc.pfc.pfcFeature.FeatureOperation


Description
This class defines a suppress operation.
User Guide References:
Methods Inherited from Interface com.ptc.pfc.pfcFeature.FeatureOperation :
Method Summary
boolean
Get method for attribute "AllowChildGroupMembers"
Iftrue the children of feature, if members of a group, will be individually suppressed from their group. Iffalse, then the group containing the feature's children will be also suppressed. This attribute can be set totrue if and only if bothSuppressOperation.GetClip(boolean) andSuppressOperation.GetAllowGroupMembers(boolean) are set totrue. Default value isfalse.
boolean
Get method for attribute "AllowGroupMembers"
Iftrue the feature, if member of a group, will be individually suppressed from the group. Iffalse, the group containing the feature will be also suppressed. This attribute can be set totrue if and only ifSuppressOperation.GetClip(boolean) is also set totrue. Default value isfalse.
boolean
Get method for attribute "Clip"
A Boolean flag that specifies whether to suppress the selected feature and all the features that follow. Default value isfalse.
void
Set method for attribute "AllowChildGroupMembers"
Iftrue the children of feature, if members of a group, will be individually suppressed from their group. Iffalse, then the group containing the feature's children will be also suppressed. This attribute can be set totrue if and only if bothSuppressOperation.GetClip(boolean) andSuppressOperation.GetAllowGroupMembers(boolean) are set totrue. Default value isfalse.
void
SetAllowGroupMembers (boolean value)
Set method for attribute "AllowGroupMembers"
Iftrue the feature, if member of a group, will be individually suppressed from the group. Iffalse, the group containing the feature will be also suppressed. This attribute can be set totrue if and only ifSuppressOperation.GetClip(boolean) is also set totrue. Default value isfalse.
void
SetClip (boolean value)
Set method for attribute "Clip"
A Boolean flag that specifies whether to suppress the selected feature and all the features that follow. Default value isfalse.
Method Detail
GetClip
boolean
GetClip
()
SetClip
void
SetClip
(boolean value)
A Boolean flag that specifies whether to suppress the selected feature and all the features that follow. Default value is false.
User Guide References:
GetAllowGroupMembers
boolean
GetAllowGroupMembers
()
SetAllowGroupMembers
void
SetAllowGroupMembers
(boolean value)
If true the feature, if member of a group, will be individually suppressed from the group. If false, the group containing the feature will be also suppressed. This attribute can be set to true if and only if SuppressOperation.GetClip(boolean) is also set to true. Default value is false.
User Guide References:
GetAllowChildGroupMembers
boolean
GetAllowChildGroupMembers
()
SetAllowChildGroupMembers
void
SetAllowChildGroupMembers
(boolean value)
If true the children of feature, if members of a group, will be individually suppressed from their group. If false, then the group containing the feature's children will be also suppressed. This attribute can be set to true if and only if both SuppressOperation.GetClip(boolean) and SuppressOperation.GetAllowGroupMembers(boolean) are set to true. Default value is false.
User Guide References:
Was this helpful?