PrintDocument for WinForms
RenderInlineBegin(Style,Object,Object) メソッド


C1.PrintDocument.6 アセンブリ > C1.C1Preview 名前空間 > C1PrintDocument クラス : RenderInlineBegin(Style,Object,Object) メソッド
The C1PrintDocument.Style to use for the paragraph.
The width of the paragraph. If null, page (or column for multi-column layouts) width is used.
The height of the paragraph. If null, Unit.Auto is used.
Begins rendering of a new inline paragraph into the C1PrintDocument.Body of the current document, using the specified C1PrintDocument.Style and dimensions.
シンタックス
'宣言
 
Public Function RenderInlineBegin( _
   ByVal style As Style, _
   ByVal width As System.Object, _
   ByVal height As System.Object _
) As System.Boolean
'使用法
 
Dim instance As C1PrintDocument
Dim style As Style
Dim width As System.Object
Dim height As System.Object
Dim value As System.Boolean
 
value = instance.RenderInlineBegin(style, width, height)
public System.bool RenderInlineBegin( 
   Style style,
   System.object width,
   System.object height
)

パラメータ

style
The C1PrintDocument.Style to use for the paragraph.
width
The width of the paragraph. If null, page (or column for multi-column layouts) width is used.
height
The height of the paragraph. If null, Unit.Auto is used.

戻り値の型

true if no warnings were generated by this call, false otherwise.
解説
Use this method to set the C1PrintDocument.Style, RenderObject.Width and RenderObject.Height of the RenderParagraph object maintained internally to serve subsequent RenderInline... calls. The specified parameters are in effect until the started paragraph is ended by a call to C1PrintDocument.RenderInlineEnd, another C1PrintDocument.RenderInlineBegin, or any of the RenderBlock... or RenderDirect... methods.

It is not necessary to call this method in order to use other RenderInline... methods (such as C1PrintDocument.RenderInline or C1PrintDocument.RenderInlineText), but calling this method allows to set the style and dimensions for the paragraph that will be filled by subsequent RenderInline... calls.

This method can only be used between calls to C1PrintDocument.StartDoc and C1PrintDocument.EndDoc methods on the current document. For details, see C1PrintDocument.RenderBlock.

参照

C1PrintDocument クラス
C1PrintDocument メンバ
RenderInlineEnd メソッド
StartDoc メソッド
EndDoc メソッド
Generate メソッド
Warnings プロパティ