DesignIntf.IProperty.AutoFill

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AutoFill: Boolean;

C++

virtual bool __fastcall AutoFill() = 0 ;

Properties

Type Visibility Source Unit Parent
function public
DesignIntf.pas
DesignIntf.hpp
DesignIntf IProperty

Description

Returns true to indicate that values can be typed incrementally—and automatically completed—in the Object Inspector.

If GetAttributes returns paValueList, the Object Inspector calls AutoFill to verify that automatic typing completion should be permitted. If AutoFill returns true, the Object Inspector uses the values provided by GetValues to fill in partially typed entries. For example, if the legal values for a property are prSmall and prLarge, the user can type "prS" and the Object Inspector automatically fills in "prSmall."

See Also