AODL.Document.Styles.MasterStyles.TextPageLayout.GetLayoutMeasurement C# (CSharp) Method

GetLayoutMeasurement() public method

Gets the layout measurement.
public GetLayoutMeasurement ( ) : bool
return bool
		public bool GetLayoutMeasurement()
		{
			try
			{
				if (this.PageWidth != null)
				{
					return this.PageWidth.EndsWith("cm");
				}
				return true;
			}
			catch(Exception)
			{
				throw;
			}
		}
	}