サンプル2。ステップ24:CookingDescriptionブロックの作成
CookingInstructionsブロックを作成するには:
- メインウィンドウでFlexiLayoutタブをクリックします。
- FlexiLayoutツリーでブロックを選択します。
- FlexiLayoutメニューまたはショートカットメニューでブロック →ブロックを追加 → テキストを選択します。
- プロパティダイアログボックスで、名前フィールドのブロック名を指定します:CookingInstructions。
- ブロックの位置を記述するには、表現を選択します。
- ブロックの場所を記述して、調理手順および盛り付け数のみを含めるようにします。ブロックには不要なテキストを含みません(すなわち単語「Serves」の前にくるテキスト)。ブロックを以下の要素周辺の矩形集合として記述します:CookingDescription、ServesおよびServings。この方法により、矩形ではない区域を指定できます。
FlexiLayout言語では、以下のように書き込みます:
RectArray outputRectArray;
//initializing the variable with the help of an empty constructor
outputRectArray = RectArray();
//adding the rectangles of the hypotheses of three elements
outputRectArray.Add ( SearchElements.Cooking.Description.CookingInstructions.Rect );
outputRectArray.Add( SearchElements.Cooking.Description.Serves.Rect );
outputRectArray.Add( SearchElements.Cooking.Description.Servings.Rect );
OutputRegion = Region( outputRectArray );
4/12/2024 6:16:07 PM