📄 system.design.cs
字号:
Void EnableModeless( I4 fEnable);
I4 TranslateAccelerator( ByRef ValueClass MSG , I2 lpmsg, wID);
}
interface IOleInPlaceUIWindow :
{
I GetWindow();
Void ContextSensitiveHelp( I4 fEnterMode);
Void GetBorder( Class COMRECT lprectBorder);
Void RequestBorderSpace( Class COMRECT pborderwidths);
Void SetBorderSpace( Class COMRECT pborderwidths);
Void SetActiveObject( Class IOleInPlaceActiveObject pActiveObject, String pszObjName);
}
interface IOleInPlaceActiveObject :
{
I4 GetWindow( ByRef I hwnd);
Void ContextSensitiveHelp( I4 fEnterMode);
I4 TranslateAccelerator( ByRef ValueClass MSG , lpmsg);
Void OnFrameWindowActivate( I4 fActivate);
Void OnDocWindowActivate( I4 fActivate);
Void ResizeBorder( Class COMRECT prcBorder, Class IOleInPlaceUIWindow pUIWindow, I4 fFrameWindow);
Void EnableModeless( I4 fEnable);
}
interface IOleContainer :
{
Void ParseDisplayName( Object pbc, String pszDisplayName, SZArray I4 pchEaten, SZArray Object ppmkOut);
Void EnumObjects( I4 grfFlags, ByRef Object ppenum);
Void LockContainer( I4 fLock);
}
interface IOleClientSite :
{
Void SaveObject();
Object GetMoniker( I4 , I4 dwAssign, dwWhichMoniker);
I4 GetContainer( ByRef Class IOleContainer ppContainer);
Void ShowObject();
Void OnShowWindow( I4 fShow);
Void RequestNewObjectLayout();
}
interface IOleDocumentSite :
{
I4 ActivateMe( Class IOleDocumentView , pViewToActivate);
}
interface IOleDocumentView :
{
Void SetInPlaceSite( Class IOleInPlaceSite pIPSite);
Class IOleInPlaceSite GetInPlaceSite( );
Object GetDocument( );
Void SetRect( Class COMRECT prcView);
Void GetRect( Class COMRECT prcView);
Void SetRectComplex( Class COMRECT prcView, Class COMRECT prcHScroll, Class COMRECT prcVScroll, Class COMRECT prcSizeBox);
Void Show( I4 fShow);
Void UIActivate( I4 fUIActivate);
Void Open();
Void CloseView( I4 dwReserved);
Void SaveViewState( Class IStream pstm);
Void ApplyViewState( Class IStream pstm);
Void Clone( Class IOleInPlaceSite pIPSiteNew, SZArray Class IOleDocumentView ppViewNew);
}
interface IOleInPlaceSite :
{
I GetWindow();
Void ContextSensitiveHelp( I4 fEnterMode);
I4 CanInPlaceActivate( );
Void OnInPlaceActivate();
Void OnUIActivate();
Void GetWindowContext( ByRef Class IOleInPlaceFrame ppFrame, ByRef Class IOleInPlaceUIWindow ppDoc, Class COMRECT lprcPosRect, Class COMRECT lprcClipRect, Class tagOIFI lpFrameInfo);
I4 Scroll( Class tagSIZE , scrollExtant);
Void OnUIDeactivate( I4 fUndoable);
Void OnInPlaceDeactivate();
Void DiscardUndoState();
Void DeactivateAndUndo();
I4 OnPosRectChange( Class COMRECT , lprcPosRect);
}
interface IStream :
{
I4 Read( I , I4 buf, len);
I4 Write( I , I4 buf, len);
I8 Seek( I8 , I4 dlibMove, dwOrigin);
Void SetSize( I8 libNewSize);
I8 CopyTo( Class IStream , I8 pstm, SZArray I8 cb, pcbRead);
Void Commit( I4 grfCommitFlags);
Void Revert();
Void LockRegion( I8 libOffset, I8 cb, I4 dwLockType);
Void UnlockRegion( I8 libOffset, I8 cb, I4 dwLockType);
Void Stat( I pStatstg, I4 grfStatFlag);
Class IStream Clone( );
}
interface IOleObject :
{
I4 SetClientSite( Class IOleClientSite pClientSite);
I4 GetClientSite( ByRef Class IOleClientSite site);
I4 SetHostNames( String szContainerApp, String szContainerObj);
I4 Close( I4 dwSaveOption);
I4 SetMoniker( I4 dwWhichMoniker, Object pmk);
I4 GetMoniker( I4 dwAssign, I4 dwWhichMoniker, ByRef Object moniker);
I4 InitFromData( Class IOleDataObject pDataObject, I4 fCreation, I4 dwReserved);
I4 GetClipboardData( I4 dwReserved, ByRef Class IOleDataObject data);
I4 DoVerb( I4 iVerb, I lpmsg, Class IOleClientSite pActiveSite, I4 lindex, I hwndParent, Class COMRECT lprcPosRect);
I4 EnumVerbs( ByRef Class IEnumOLEVERB e);
I4 OleUpdate();
I4 IsUpToDate();
I4 GetUserClassID( ByRef ValueClass System.Guid pClsid);
I4 GetUserType( I4 dwFormOfType, ByRef String userType);
I4 SetExtent( I4 dwDrawAspect, Class tagSIZEL pSizel);
I4 GetExtent( I4 dwDrawAspect, Class tagSIZEL pSizel);
I4 Advise( Class IAdviseSink pAdvSink, ByRef I4 cookie);
I4 Unadvise( I4 dwConnection);
I4 EnumAdvise( ByRef Object e);
I4 GetMiscStatus( I4 dwAspect, ByRef I4 misc);
I4 SetColorScheme( Class tagLOGPALETTE pLogpal);
}
interface IAdviseSink :
{
Void OnDataChange( Class FORMATETC pFormatetc, Class STGMEDIUM pStgmed);
Void OnViewChange( I4 dwAspect, I4 lindex);
Void OnRename( Object pmk);
Void OnSave();
Void OnClose();
}
interface IPersistStreamInit :
{
Void GetClassID( ByRef ValueClass System.Guid pClassID);
I4 IsDirty( );
Void Load( Class IStream pstm);
Void Save( Class IStream pstm, Boolean fClearDirty);
Void GetSizeMax( I8 pcbSize);
Void InitNew();
}
class HTMLDocument : System.Object
{
Void HTMLDocument();
}
interface IHTMLDocument :
{
Object GetScript( );
}
interface IHTMLDocument2 :
{
Object GetScript( );
Class IHTMLElementCollection GetAll( );
Class IHTMLElement GetBody( );
Class IHTMLElement GetActiveElement( );
Class IHTMLElementCollection GetImages( );
Class IHTMLElementCollection GetApplets( );
Class IHTMLElementCollection GetLinks( );
Class IHTMLElementCollection GetForms( );
Class IHTMLElementCollection GetAnchors( );
Void SetTitle( String p);
String GetTitle( );
Class IHTMLElementCollection GetScripts( );
Void SetDesignMode( String p);
String GetDesignMode( );
Object GetSelection( );
String GetReadyState( );
Object GetFrames( );
Class IHTMLElementCollection GetEmbeds( );
Class IHTMLElementCollection GetPlugins( );
Void SetAlinkColor( Object p);
Object GetAlinkColor( );
Void SetBgColor( Object p);
Object GetBgColor( );
Void SetFgColor( Object p);
Object GetFgColor( );
Void SetLinkColor( Object p);
Object GetLinkColor( );
Void SetVlinkColor( Object p);
Object GetVlinkColor( );
String GetReferrer( );
Object GetLocation( );
String GetLastModified( );
Void SetURL( String p);
String GetURL( );
Void SetDomain( String p);
String GetDomain( );
Void SetCookie( String p);
String GetCookie( );
Void SetExpando( Boolean p);
Boolean GetExpando( );
Void SetCharset( String p);
String GetCharset( );
Void SetDefaultCharset( String p);
String GetDefaultCharset( );
String GetMimeType( );
String GetFileSize( );
String GetFileCreatedDate( );
String GetFileModifiedDate( );
String GetFileUpdatedDate( );
String GetSecurity( );
String GetProtocol( );
String GetNameProp( );
Void DummyWrite( I4 psarray);
Void DummyWriteln( I4 psarray);
Object Open( String , Object URL, Object name, Object features, replace);
Void Close();
Void Clear();
Boolean QueryCommandSupported( String , cmdID);
Boolean QueryCommandEnabled( String , cmdID);
Boolean QueryCommandState( String , cmdID);
Boolean QueryCommandIndeterm( String , cmdID);
String QueryCommandText( String , cmdID);
Object QueryCommandValue( String , cmdID);
Boolean ExecCommand( String , Boolean cmdID, Object showUI, value);
Boolean ExecCommandShowHelp( String , cmdID);
Class IHTMLElement CreateElement( String , eTag);
Void SetOnhelp( Object p);
Object GetOnhelp( );
Void SetOnclick( Object p);
Object GetOnclick( );
Void SetOndblclick( Object p);
Object GetOndblclick( );
Void SetOnkeyup( Object p);
Object GetOnkeyup( );
Void SetOnkeydown( Object p);
Object GetOnkeydown( );
Void SetOnkeypress( Object p);
Object GetOnkeypress( );
Void SetOnmouseup( Object p);
Object GetOnmouseup( );
Void SetOnmousedown( Object p);
Object GetOnmousedown( );
Void SetOnmousemove( Object p);
Object GetOnmousemove( );
Void SetOnmouseout( Object p);
Object GetOnmouseout( );
Void SetOnmouseover( Object p);
Object GetOnmouseover( );
Void SetOnreadystatechange( Object p);
Object GetOnreadystatechange( );
Void SetOnafterupdate( Object p);
Object GetOnafterupdate( );
Void SetOnrowexit( Object p);
Object GetOnrowexit( );
Void SetOnrowenter( Object p);
Object GetOnrowenter( );
Void SetOndragstart( Object p);
Object GetOndragstart( );
Void SetOnselectstart( Object p);
Object GetOnselectstart( );
Class IHTMLElement ElementFromPoint( I4 , I4 x, y);
Object GetParentWindow( );
Object GetStyleSheets( );
Void SetOnbeforeupdate( Object p);
Object GetOnbeforeupdate( );
Void SetOnerrorupdate( Object p);
Object GetOnerrorupdate( );
String toString( );
Class IHTMLStyleSheet CreateStyleSheet( String , I4 bstrHref, lIndex);
}
interface IHTMLElement :
{
Void SetAttribute( String strAttributeName, Object AttributeValue, I4 lFlags);
Void GetAttribute( String strAttributeName, I4 lFlags, SZArray Object pvars);
Boolean RemoveAttribute( String , I4 strAttributeName, lFlags);
Void SetClassName( String p);
String GetClassName( );
Void SetId( String p);
String GetId( );
String GetTagName( );
Class IHTMLElement GetParentElement( );
Class IHTMLStyle GetStyle( );
Void SetOnhelp( Object p);
Object GetOnhelp( );
Void SetOnclick( Object p);
Object GetOnclick( );
Void SetOndblclick( Object p);
Object GetOndblclick( );
Void SetOnkeydown( Object p);
Object GetOnkeydown( );
Void SetOnkeyup( Object p);
Object GetOnkeyup( );
Void SetOnkeypress( Object p);
Object GetOnkeypress( );
Void SetOnmouseout( Object p);
Object GetOnmouseout( );
Void SetOnmouseover( Object p);
Object GetOnmouseover( );
Void SetOnmousemove( Object p);
Object GetOnmousemove( );
Void SetOnmousedown( Object p);
Object GetOnmousedown( );
Void SetOnmouseup( Object p);
Object GetOnmouseup( );
Class IHTMLDocument2 GetDocument( );
Void SetTitle( String p);
String GetTitle( );
Void SetLanguage( String p);
String GetLanguage( );
Void SetOnselectstart( Object p);
Object GetOnselectstart( );
Void ScrollIntoView( Object varargStart);
Boolean Contains( Class IHTMLElement , pChild);
I4 GetSourceIndex( );
Object GetRecordNumber( );
Void SetLang( String p);
String GetLang( );
I4 GetOffsetLeft( );
I4 GetOffsetTop( );
I4 GetOffsetWidth( );
I4 GetOffsetHeight( );
Class IHTMLElement GetOffsetParent( );
Void SetInnerHTML( String p);
String GetInnerHTML( );
Void SetInnerText( String p);
String GetInnerText( );
Void SetOuterHTML( String p);
String GetOuterHTML( );
Void SetOuterText( String p);
String GetOuterText( );
Void InsertAdjacentHTML( String where, String html);
Void InsertAdjacentText( String where, String text);
Class IHTMLElement GetParentTextEdit( );
Boolean GetIsTextEdit( );
Void Click();
Object GetFilters( );
Void SetOndragstart( Object p);
Object GetOndragstart( );
String toString( );
Void SetOnbeforeupdate( Object p);
Object GetOnbeforeupdate( );
Void SetOnafterupdate( Object p);
Object GetOnafterupdate( );
Void SetOnerrorupdate( Object p);
Object GetOnerrorupdate( );
Void SetOnrowexit( Object p);
Object GetOnrowexit( );
Void SetOnrowenter( Object p);
Object GetOnrowenter( );
Void SetOndatasetchanged( Object p);
Object GetOndatasetchanged( );
Void SetOndataavailable( Object p);
Object GetOndataavailable( );
Void SetOndatasetcomplete( Object p);
Object GetOndatasetcomplete( );
Void SetOnfilterchange( Object p);
Object GetOnfilterchange( );
Object GetChildren( );
Object GetAll( );
}
interface IHTMLElement2 :
{
String GetScopeName( );
Void SetCapture( Boolean containerCapture);
Void ReleaseCapture();
Void SetOnlosecapture( Object p);
Object GetOnlosecapture( );
String ComponentFromPoint( I4 , I4 x, y);
Void DoScroll( Object component);
Void SetOnscroll( Object p);
Object GetOnscroll( );
Void SetOndrag( Object p);
Object GetOndrag( );
Void SetOndragend( Object p);
Object GetOndragend( );
Void SetOndragenter( Object p);
Object GetOndragenter( );
Void SetOndragover( Object p);
Object GetOndragover( );
Void SetOndragleave( Object p);
Object GetOndragleave( );
Void SetOndrop( Object p);
Object GetOndrop( );
Void SetOnbeforecut( Object p);
Object GetOnbeforecut( );
Void SetOncut( Object p);
Object GetOncut( );
Void SetOnbeforecopy( Object p);
Object GetOnbeforecopy( );
Void SetOncopy( Object p);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -