Assigns (copies) properties from another 
RenderObject to the current object. The list of fragments (the 
RenderObject.Fragments property) is neither copied nor changed. Properties 
RenderObject.UserData, 
RenderObject.PageNumberingChange are copied by reference. The 
RenderObject.Name property is not copied.
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub AssignFrom( _
   ByVal  As RenderObject, _
   ByVal  As System.Boolean, _
   ByVal  As System.Boolean _
) 
             
        
            
            '使用法
 
Dim instance As RenderObject
Dim source As RenderObject
Dim assignDataBinding As System.Boolean
Dim assignChildren As System.Boolean
 
instance.AssignFrom(source, assignDataBinding, assignChildren)
             
        
            
            public void AssignFrom( 
   RenderObject ,
   System.bool ,
   System.bool 
)
             
        
             
        
            パラメータ
- source
 
- The source object to copy properties from.
 - assignDataBinding
 
- Indicates whether the RenderObject.DataBinding property should be copied.
 - assignChildren
 
- Indicates whether the elements of the RenderObject.Children collection should be copied.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照