propsht.ssc

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

SSC
51
字号
<OBJECT CLASSID="clsid:9319A422-D2CA-11D0-818F-00805F8AF9E8" PSOBJMOD=TRUE></OBJECT><!--SCRIPT PSOBJMOD
    import( site.GetRootDocument().location + "/ObjMod80.ssc" );
    session.active = true;
    InitObjects(session);
-->
<!--SCRIPT // {{ SCRIPT()
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 + -
显示快捷键?