表示: Delphi
C++
表示設定
System.TObject.UnitScope
提供:XE2 API Documentation
Delphi
class function UnitScope: string;
C++
__classmethod String __fastcall UnitScope();
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
| function | public | System.pas systobj.h |
System | TObject |
説明
クラスのユニット スコープを返します。
クラスのユニット スコープは、現在のところ、クラスのユニット名と同じです。
uses SysUtils, SyncObjs; begin Writeln(TEvent.UnitScope); // displays System.SyncObjs // ...