propsht.ssc

来自「PowerBuilder8.0开发分散式应用所帶的例程」· SSC 代码 · 共 44 行

SSC
44
字号
<!--SCRIPT propsht.ssc created on 06/25/97 09:33:32
class propertySheetPage( type, title, explanation, question, choices, selected, help ) {
  this.type = type;
  this.title = title;
  this.explanation = explanation;
  this.question = question;
  this.choices = choices;
  this.selected = selected;
  this.help = help;
}

class itemPosition( left, top, width, height )
{
  this.left = left;
  this.top = top;
  this.width = width;
  this.height = height;
}

class propertySheetItem( type, question, choices, selected, position, help )
{
  this.type = type;
  this.question = question;
  this.choices = choices;
  this.selected = selected;
  this.position = position;
  this.help = help;
}

class propertySheetPictureItem( picture, position )
{
  this.type = "picture";
  this.picture = picture;
  this.position = position;
}

class propertySheetAdvanced( title, explanation, items )
{
  this.type = "Advanced";
  this.title = title;
  this.explanation = explanation;
  this.items = items;
}
-->

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?