最近我發現Delphi對象檢查器以灰色顯示一些屬性。這裏有一個例子:Delphi對象檢查器如何灰顯一些屬性?
我不知道這是什麼意思?這些屬性是如何定義的?我沒有發現定義的任何差異,比如說DSHostname和ProxyHost。但正如你所看到的DSHostname正常顯示,ProxyHost灰色。
這是性質的問題相關聲明:
/// <summary>The host to proxy requests through, or empty string to not use a proxy.</summary>
property ProxyHost: string read FProxyHost write FProxyHost;
/// <summary>The port on the proxy host to proxy requests through. Ignored if DSProxyHost isn't set.
/// </summary>
[Default(8888)]
property ProxyPort: Integer read FProxyPort write FProxyPort default 8888;
/// <summary>The user name for authentication with the specified proxy.</summary>
property ProxyUsername: string read FProxyUsername write FProxyUsername;
/// <summary>The password for authentication with the specified proxy.</summary>
property ProxyPassword: string read FProxyPassword write FProxyPassword;
鏈接到文檔肯定會有所幫助。 –
@LURD,你要求什麼樣的文件? – Alex
http://docwiki.embarcadero.com/Libraries/Berlin/en/Datasnap.DSCommon.TDSClientCallbackChannelManager_Properties –