[operations] [attributes] [fields] [template] [definition]
[implementation] [documentation]
To use the search tool you need to use a browser which supports JAVA (c)

[next] [prev] [superclass] [next peer] [prev peer] [subclass] [index] [hierarchy]

BookOfRulesPage

inherits from BookPage

Object <- Viewable <- Card <- BookPage <- BookOfRulesPage



Operations

Get list of all operations

AboutToHide
AboutToShow


Attributes

Get list of all attributes

NeedsInstallEntry


Fields

Field Type
Viewable: superview: Viewable
relativeOrigin: Dot
contentSize: Dot
viewFlags: Flags
labelStyle: TextStyle
color: Unsigned
altColor: Unsigned
shadow: Shadow
sound: Playable
Card: prototypeForm: Form
stack: StackOfCards
noEnvelope: Boolean
sentFlag: Boolean
isEnvelope: Boolean
isStationery: Boolean
substitute: Boolean
suppressCardData: Boolean
autoAddress: Boolean
wasSeen: Boolean
autoPencil: Boolean
noAutoKeyboard: Boolean
tempTOCEntry: Boolean
rightPageEntry: Boolean
noDrawing: Boolean
dontPurge: Boolean
locked: Boolean
isConfirmed: Boolean
shrinkToFit: Boolean
noFileAfterSend: Boolean
noSubstituteCard: Boolean
isReadOnly: Boolean
dontAppearInLog: Boolean
deliveryReport: Boolean
createdPostR1: Boolean
onePagePerCard: Boolean
BookPage: parent: Object
indexOfPages: ObjectList
bookmark: Object
BookOfRulesPage: source: Object


Instance template

instance BookOfRulesPage tag;
 relativeOrigin: <0.0,0.0>;
    contentSize: <0.0,0.0>;
      viewFlags: 0x00000000;
     labelStyle: nilObject;
          color: 0;
       altColor: 0;
         shadow: nilObject;
          sound: nilObject;
  prototypeForm: nilObject;
          stack: nilObject;
     noEnvelope: false;
       sentFlag: false;
     isEnvelope: false;
   isStationery: false;
     substitute: false;
suppressCardData: false;
    autoAddress: false;
        wasSeen: false;
     autoPencil: false;
 noAutoKeyboard: false;
   tempTOCEntry: false;
 rightPageEntry: false;
      noDrawing: false;
      dontPurge: false;
         locked: false;
    isConfirmed: false;
    shrinkToFit: false;
noFileAfterSend: false;
noSubstituteCard: false;
     isReadOnly: false;
dontAppearInLog: false;
 deliveryReport: false;
  createdPostR1: false;
 onePagePerCard: false;
         parent: nilObject;
   indexOfPages: nilObject;
       bookmark: nilObject;
         source: nilObject;
end instance;

Class definition

Define Class BookOfRulesPage;
    inherits from BookPage;
    
    field source: Object, weak;
        // object that contains rules shown by this page
        // handles scenes and the trash window
    
    overrides AboutToShow;
        // sets iRuleBookRuleList to rule list derived from source object
    overrides AboutToHide;
        // sets iRuleBookRuleList back to nilObject
    overrides NeedsInstallEntry;
        // since these pages are generated by the stack when they are needed,
        // we don't want to let them have install entries
        // NOTE: that means these cards will be orphaned in separate packages
        // they get created in and we are relying on garbage collection to
        // destroy them (eventually)
end class;