Pr_Rule=^R_Rule
R_Rule=record 
    Name:string; 
    flag:string
  end;   T_Para = class 
  private 
    FRule: R_Rule; 
  public 
    property Rule: R_Rule read FRule write FRule; 
  end;   Para: T_Para; 
  ...   Para.Rule.Name:='abc'; 
这一句编译通不过,编译程序的提示为: 
Left side cannot be assigned to  我需要解决此问题的方法