home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / RadioMatrix.wo / RadioMatrix.wos < prev   
Encoding:
Text File  |  1996-03-02  |  435 b   |  28 lines

  1. ////////////////////////
  2. //  RadioMatrix
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. id matrixName;
  8. id selectedItem;
  9. id valueStringsList;
  10. id borderSize;
  11. id isVertical;
  12.  
  13. id cellPadding;
  14. id cellSpacing;
  15.  
  16. id aValue;
  17.  
  18. - awake
  19. {
  20.     matrixName = @"UserShouldProvide";
  21.     valueStringsList = @("Item1", "Item2", "Item3");
  22.     selectedItem = @"Item1";
  23.     borderSize = 1;
  24.     cellSpacing = 0;
  25.     cellPadding = 2;
  26.     isVertical = YES;
  27. }
  28.